Expand description
A hash set implemented as a HashMap
where the value is ()
.
Structs§
- A lazy iterator producing elements in the difference of
HashSet
s. - A draining iterator over the items of a
HashSet
. - A lazy iterator producing elements in the intersection of
HashSet
s. - An owning iterator over the items of a
HashSet
. - An iterator over the items of a
HashSet
. - A lazy iterator producing elements in the symmetric difference of
HashSet
s. - A lazy iterator producing elements in the union of
HashSet
s. - Extract
If Experimental A draining, filtering iterator over the items of aHashSet
. - Occupied
Entry Experimental A view into an occupied entry in aHashSet
. It is part of theEntry
enum. - Vacant
Entry Experimental A view into a vacant entry in aHashSet
. It is part of theEntry
enum.
Enums§
- Entry
Experimental A view into a single entry in a set, which may either be vacant or occupied.