Expand description
IndexMap is a hash table where the iteration order of the key-value
pairs is independent of the hash values of the keys.
Structs
- A draining iterator over the entries of aIndexMap.
- A hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
- An owning iterator over the entries of aIndexMap.
- An owning iterator over the keys of aIndexMap.
- An owning iterator over the values of aIndexMap.
- An iterator over the entries of aIndexMap.
- A mutable iterator over the entries of aIndexMap.
- An iterator over the keys of aIndexMap.
- A view into an occupied entry in aIndexMap. It is part of theEntryenum.
- A dynamically-sized slice of key-value pairs in anIndexMap.
- A view into a vacant entry in aIndexMap. It is part of theEntryenum.
- An iterator over the values of aIndexMap.
- A mutable iterator over the values of aIndexMap.
Enums
- Entry for an existing key-value pair or a vacant location to insert one.
Traits
- Opt-in mutable access to keys.