Module index_map

Module index_map 

Source
Expand description

A fixed-capacity hash table where the iteration order is independent of the hash of the keys.

Structs§

IndexMap
Fixed capacity IndexMap
IntoIter
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.
OccupiedEntry
An occupied entry which can be manipulated
VacantEntry
A view into an empty slot in the underlying map
Values
An iterator over the values of a IndexMap.
ValuesMut
A mutable iterator over the values of a IndexMap.

Enums§

Entry
A view into an entry in the map

Type Aliases§

FnvIndexMap
An IndexMap using the default FNV hasher.