Expand description
Specialized hashmap for integer based keys.
For more information see the README.
Be aware that no effort is made against DoS attacks.
Structs§
- Drain
- A draining iterator for
IntMap
. - IntMap
- A hashmap that maps an integer based
K
toV
. - Into
Iter - An owning iterator over the entries of a
IntMap
. - Iter
- An iterator over the entries of a
IntMap
- IterMut
- A mutable iterator over the entries of a
IntMap
. - Keys
- An iterator over the keys of a
IntMap
. - Occupied
Entry - A view into an occupied entry in a
IntMap
. It is part of theEntry
enum. - Vacant
Entry - A view into a vacant entry in a
IntMap
. It is part of theEntry
enum. - Values
- An iterator over the values of a
IntMap
. - Values
Mut - A mutable iterator over the values of a
IntMap
.