Member | Description |
member Add : 'a -> unit |
Add an element to the collection
|
member Clear : unit -> unit |
Clear all elements from the set
|
member Contains : 'a -> bool |
Test if the set contains the given element
|
member Copy : unit -> HashSet<'a> |
Make a shallow copy of the set
|
member Count : int |
The total number of elements in the set
|
member Fold : ('a -> 'b -> 'b) -> ('b -> 'b) |
Apply the given function to the set threading the accumulating parameter
through the sequence of function applications
|
member Iterate : ('a -> unit) -> unit |
Apply the given function to each binding in the hash table
|
member Remove : 'a -> unit |
Remove the given element from the set
|