Sets
Function | Description | Meta |
---|---|---|
x & y |
Returns the intersection of two sets. Arguments: Returns:x (set[any])the first set y (set[any])the second set z (set[any])the intersection of | Wasm |
intersection |
Returns the intersection of the given input sets. Arguments: Returns:xs (set[set[any]])set of sets to intersect y (set[any])the intersection of all | Wasm |
x - y |
Minus subtracts the second number from the first number or computes the difference between two sets. Arguments: Returns:x (any<number, set[any]>)y (any<number, set[any]>)z (any<number, set[any]>)the difference of | Wasm |
x | y |
Returns the union of two sets. Arguments: Returns:x (set[any])y (set[any])z (set[any])the union of | Wasm |
union |
Returns the union of the given input sets. Arguments: Returns:xs (set[set[any]])set of sets to merge y (set[any])the union of all | Wasm |