Expand description
A fixed-capacity hash table where the iteration order is independent of the hash of the keys.
Structs§
- Index
Map - Fixed capacity
IndexMap
- Into
Iter - An owning iterator over the entries of an
IndexMap
. - Iter
- An iterator over the items of a
IndexMap
. - IterMut
- A mutable iterator over the items of a
IndexMap
. - Keys
- An iterator over the keys of a
IndexMap
. - Occupied
Entry - An occupied entry which can be manipulated
- Vacant
Entry - A view into an empty slot in the underlying map
- Values
- An iterator over the values of a
IndexMap
. - Values
Mut - A mutable iterator over the values of a
IndexMap
.
Enums§
- Entry
- A view into an entry in the map
Type Aliases§
- FnvIndex
Map - An
IndexMap
using the default FNV hasher.