| $setEquals |
Returns true if two sets have the same elements. |
| $setIntersection |
Returns the common elements of the input sets. |
| $setDifference |
Returns elements of a set that do not appear in a second set. |
| $setUnion |
Returns a set that holds all elements of the input sets. |
| $setIsSubset |
Returns true if all elements of a set appear in a second set. |
| $anyElementTrue |
Returns true if any elements of a set evaluate to true, and false otherwise. |
| $allElementsTrue |
Returns true if all elements of a set evaluate to true, and false otherwise. |