| Member | Description |
member Add : 'a -> Set<'a> |
A useful shortcut for Set.add. Note this operation produces a new set
and does not mutate the original set. The new set will share many storage
nodes with the original. See the Set module for further operations on sets.
|
member Contains : 'a -> bool |
A useful shortcut for Set.mem. See the Set module for further operations on sets.
|
member Count : int |
The number of elements in the set
|
override Equals : obj -> bool | |
member IsEmpty : bool |
A useful shortcut for Set.is_empty. See the Set module for further operations on sets.
|
member IsSubsetOf : Set<'a> -> bool |
Evaluates to "true" if all elements of the second set are in the first
|
member IsSupersetOf : Set<'a> -> bool |
Evaluates to "true" if all elements of the first set are in the second
|
member Remove : 'a -> Set<'a> |
A useful shortcut for Set.remove. Note this operation produces a new set
and does not mutate the original set. The new set will share many storage
nodes with the original. See the Set module for further operations on sets.
|