Synopsis:
X ** Y -- form the Cartesian product of two sets.
Its elements are the sequences (x,y), where x is an element of X, and y is an element of Y.
i1 : set {1,2} ** set {a,b,c} |
See also:
Code:
-- ../../../Macaulay2/m2/set.m2:45 Set ** Set := Set => (x,y) -> combine(x,y,identity,(i,j)->i,)