Returns the set of elements that are in both of two sets.
Use this to perform set operation "intersection"
menu: veeos ==> Math ==> Sets ==> setAND
library: mathLib
o_setAND( [2 3 4 3 5 5 3 1] , [6 3 4 7 1] ) returns [3 4 1]
setAND is equivalent to an intersection of two sets with duplicate elements
removed, as in the intersecting area of a Venn diagram.
uses unique(A)
VEE 7.0+, all platforms
isElement, setComplement, setOR, setXOR, unique