Module hash_set
Expand description
A hash set implemented as a HashMap
where the value is ()
.
Structs§
- Difference
- A lazy iterator producing elements in the difference of
HashSet
s. - Drain
- A draining iterator over the items of a
HashSet
. - Extract
If - A draining iterator over entries of a
HashSet
which don’t satisfy the predicatef
. - HashSet
- A hash set implemented as a
HashMap
where the value is()
. - Intersection
- A lazy iterator producing elements in the intersection of
HashSet
s. - Into
Iter - An owning iterator over the items of a
HashSet
. - Iter
- An iterator over the items of a
HashSet
. - Occupied
Entry - A view into an occupied entry in a
HashSet
. It is part of theEntry
enum. - Symmetric
Difference - A lazy iterator producing elements in the symmetric difference of
HashSet
s. - Union
- A lazy iterator producing elements in the union of
HashSet
s. - Vacant
Entry - A view into a vacant entry in a
HashSet
. It is part of theEntry
enum.
Enums§
- Entry
- A view into a single entry in a set, which may either be vacant or occupied.