forked from rebol/rebol
-
Notifications
You must be signed in to change notification settings - Fork 2
Exclude
angerangel edited this page Mar 19, 2013
·
1 revision
EXCLUDE set1 set2 /case /skip size
Returns the first data set less the second data set.
EXCLUDE is a native value.
- set1 -- First data set (block! string! binary! bitset! typeset!)
- set2 -- Second data set (block! string! binary! bitset! typeset!)
- /case -- Uses case-sensitive comparison
-
/skip -- Treat the series as records of fixed size
- size (integer!)
#SOURCE
exclude: make native! [ [
{Returns the first data set less the second data set.}
set1 [block! string! binary! bitset! typeset!] "First data set"
set2 [block! string! binary! bitset! typeset!] "Second data set"
/case "Uses case-sensitive comparison"
/skip "Treat the series as records of fixed size"
size [integer!]
] ]