Operators
Joins
Quantifier Operations
Method Name | Description |
---|---|
| Determines whether all the elements in a sequence satisfy a condition. |
| Determines whether any elements in a sequence satisfy a condition. |
| Determines whether a sequence contains a specified element. |
Set Operations
Method names | Description |
---|---|
| Removes duplicate values from a collection. |
| Returns the set difference, which means the elements of one collection that do not appear in a second collection. |
| Returns the set intersection, which means elements that appear in each of two collections. |
| Returns the set union, which means unique elements that appear in either of two collections. |
Last updated