Rebol 编程/union
外观
< Rebol 编程
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!] ]