Skip to content
angerangel edited this page Mar 19, 2013 · 1 revision

USAGE

   EXCLUDE set1 set2 /case /skip size

DESCRIPTION

Returns the first data set less the second data set.

EXCLUDE is a native value.

ARGUMENTS

  • set1 -- First data set (block! string! binary! bitset! typeset!)
  • set2 -- Second data set (block! string! binary! bitset! typeset!)

REFINEMENTS

  • /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!]
] ]
Clone this wiki locally