REBOL Programming/difference

< REBOL Programming

USAGE:

DIFFERENCE set1 set2 /case /skip size 

DESCRIPTION:

Return the difference of two data sets.

DIFFERENCE is a native value.

ARGUMENTS

REFINEMENTS

SOURCE CODE

difference: native[
    "Return the difference of two data sets." 
    set1 [series! bitset! date!] "First data set" 
    set2 [series! bitset! date!] "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.