Rebol Programming/exclude

USAGE: edit

EXCLUDE set1 set2 /case /skip size 

DESCRIPTION: edit

Return the first set less the second set.

EXCLUDE is a native value.

ARGUMENTS edit

  • set1 -- First data set (Type: series bitset)
  • set2 -- Second data 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 edit

exclude: native[
    "Return the first set less the second set." 
    set1 [series! bitset!] "First data set" 
    set2 [series! bitset!] "Second data set" 
    /case "Uses case-sensitive comparison." 
    /skip "Treat the series as records of fixed size" 
    size [integer!]
]