Crate intmap

Source
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 to V.
IntoIter
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.
OccupiedEntry
A view into an occupied entry in a IntMap. It is part of the Entry enum.
VacantEntry
A view into a vacant entry in a IntMap. It is part of the Entry enum.
Values
An iterator over the values of a IntMap.
ValuesMut
A mutable iterator over the values of a IntMap.

Enums§

Entry
A view into a single entry in a IntMap, which may either be vacant or occupied.

Traits§

Int
A primitive unsigned integer that can be used as underlying key for IntMap.
IntKey
A type that can be used as key for IntMap.