REBOL Programming/exclude

< REBOL Programming

USAGE:

EXCLUDE set1 set2 /case /skip size 

DESCRIPTION:

Return the first set less the second set.

EXCLUDE is a native value.

ARGUMENTS

REFINEMENTS

SOURCE CODE

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!]
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.