Rebol Programming/intersect
USAGE:
editINTERSECT ser1 ser2 /case /skip size
DESCRIPTION:
editCreate a new value that is the intersection of the two arguments.
INTERSECT is a native value.
ARGUMENTS:
edit- ser1 -- first set (Type: series bitset)
- ser2 -- second set (Type: series bitset)
REFINEMENTS:
edit- /case -- Uses case-sensitive comparison.
- /skip -- Treat the series as records of fixed size
- size -- (Type: integer)
SOURCE CODE
editintersect: native[ {Create a new value that is the intersection of the two arguments.} ser1 [series! bitset!] "first set" ser2 [series! bitset!] "second set" /case "Uses case-sensitive comparison." /skip "Treat the series as records of fixed size" size [integer!] ]