Expand description
A hash map implemented with quadratic probing and SIMD lookup.
Structs§
- Default
Hasher - The default
Hasher
used byRandomState
. - Drain
- A draining iterator over the entries of a
HashMap
. - HashMap
- A hash map implemented with quadratic probing and SIMD lookup.
- Into
Iter - An owning iterator over the entries of a
HashMap
. - Into
Keys - An owning iterator over the keys of a
HashMap
. - Into
Values - An owning iterator over the values of a
HashMap
. - Iter
- An iterator over the entries of a
HashMap
. - IterMut
- A mutable iterator over the entries of a
HashMap
. - Keys
- An iterator over the keys of a
HashMap
. - Occupied
Entry - A view into an occupied entry in a
HashMap
. It is part of theEntry
enum. - Random
State RandomState
is the default state forHashMap
types.- Vacant
Entry - A view into a vacant entry in a
HashMap
. It is part of theEntry
enum. - Values
- An iterator over the values of a
HashMap
. - Values
Mut - A mutable iterator over the values of a
HashMap
. - Extract
If Experimental - A draining, filtering iterator over the entries of a
HashMap
. - Occupied
Error Experimental - The error returned by
try_insert
when the key already exists. - RawEntry
Builder Experimental - A builder for computing where in a HashMap a key-value pair would be stored.
- RawEntry
Builder Mut Experimental - A builder for computing where in a HashMap a key-value pair would be stored.
- RawOccupied
Entry Mut Experimental - A view into an occupied entry in a
HashMap
. It is part of theRawEntryMut
enum. - RawVacant
Entry Mut Experimental - A view into a vacant entry in a
HashMap
. It is part of theRawEntryMut
enum.
Enums§
- Entry
- A view into a single entry in a map, which may either be vacant or occupied.
- RawEntry
Mut Experimental - A view into a single entry in a map, which may either be vacant or occupied.