跳转到内容

Rebol 编程/exclude

来自维基教科书,开放的书籍,为开放的世界
EXCLUDE set1 set2 /case /skip size 

返回第一个集合减去第二个集合的结果。

EXCLUDE 是一个原生值。

  • set1 -- 第一个数据集 (类型: series bitset)
  • set2 -- 第二个数据集 (类型: series bitset)
  • /case -- 使用区分大小写的比较。
  • /skip -- 将 series 视为固定大小的记录
    • size -- (类型: 整数)

源代码

[编辑 | 编辑源代码]
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!]
]
华夏公益教科书