Sets
| Function | Description | Meta |
|---|---|---|
|
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 |
|
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 |
|
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 |
|
Returns the union of two sets. Arguments: Returns:x (set[any])y (set[any])z (set[any])the union of | Wasm |
|
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 |