Module indexmap

Source

Modules§

map
IndexMap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
set
A hash set implemented using IndexMap

Macros§

indexmap
Create an IndexMap from a list of key-value pairs
indexmap_with_default
Create an IndexMap from a list of key-value pairs and a BuildHasherDefault-wrapped custom hasher.
indexset
Create an IndexSet from a list of values
indexset_with_default
Create an IndexSet from a list of values and a BuildHasherDefault-wrapped custom hasher.

Structs§

IndexMap
A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
IndexSet
A hash set where the iteration order of the values is independent of their hash values.
TryReserveError
The error type for try_reserve methods.

Enums§

GetDisjointMutError
The error type returned by get_disjoint_indices_mut.

Traits§

Equivalent
Key equivalence trait.