


![[top]](top.gif)
Synopsis:
i1 : set {1,2,3} * set {2,3,4} |
Code:
-- ../../../Macaulay2/m2/set.m2:47-51
Set * Set := Set => (x,y) -> (
if # x < # y
then set select(keys x, k -> y#?k)
else set select(keys y, k -> x#?k)
)



![[top]](top.gif)