跳转到内容

Rebol 编程/intersect

来自维基教科书,开放的书籍,为开放的世界
INTERSECT ser1 ser2 /case /skip size 

创建一个新值,它是两个参数的交集。

INTERSECT 是一个原生值。

  • ser1 -- 第一个集合 (类型:系列位集)
  • ser2 -- 第二个集合 (类型:系列位集)
  • /case -- 使用区分大小写的比较。
  • /skip -- 将系列视为固定大小的记录
    • size -- (类型:整数)

源代码

[编辑 | 编辑源代码]
intersect: native[
    {Create a new value that is the intersection of the two arguments.} 
    ser1 [series! bitset!] "first set" 
    ser2 [series! bitset!] "second set" 
    /case "Uses case-sensitive comparison." 
    /skip "Treat the series as records of fixed size" 
    size [integer!]
]
华夏公益教科书