跳转到内容

Rebol 编程/union

来自维基教科书,自由的教科书
UNION set1 set2 /case /skip size 

创建一个新的集合,它是两个参数的并集。

UNION 是一个原生值。

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

源代码

[编辑 | 编辑源代码]
union: native[
    {Creates a new set that is the union of the two arguments.} 
    set1 [series! bitset!] "first set" 
    set2 [series! bitset!] "second set" 
    /case "Use case-sensitive comparison" 
    /skip "Treat the series as records of fixed size" 
    size [integer!]
]
华夏公益教科书