Expand description
A densely packed map.
Defines the DenseMap
data structure: A generic mapped container keyed by
an internally managed pool of identifiers kept densely packed.
Modules§
- collection
- A collection of
DenseMap
s.
Structs§
- Dense
Map - A generic container for
T
keyed by densely packed integers. - Insertion
Ordered Iter - An iterator over the keys and values stored in an
DenseMap
. - Into
KeyOrdered Iter - An iterator over the keys and values stored in an
DenseMap
. - KeyOrdered
Iter - An iterator over the keys and values stored in an
DenseMap
. - KeyOrdered
Iter Mut - An iterator over the keys and mutable values stored in an
DenseMap
. - Occupied
Entry - A view into an occupied entry in a map. It is part of the
Entry
enum. - Vacant
Entry - A view into a vacant entry in a map. It is part of the
Entry
enum.
Enums§
- Entry
- A view into an in-place entry in a map that can be vacant or occupied.