expression | exp
Build the tuple of expressions, ie the $k$-tape expression whose behavior is the Cartesian product of the behaviors of the input expressions.
See also:
import vcsn exp = vcsn.context('lan, q').expression e1 = exp('abc') e1
e2 = exp('(<2>x)*') e2
e1 | e2
(e1 | e2).automaton()
e1.automaton() | e2.automaton()