Crate vector_map
Source - set
- Drain
- A draining iterator over a
VecMap
. - IntoIter
- Iter
- An iterator yielding references to a
VecMap
’s keys and their corresponding values. - IterMut
- An iterator yielding references to a
VecMap
’s keys and mutable references to their
corresponding values. - Keys
- An iterator yielding references to a
VecMap
’s keys in arbitrary order. - OccupiedEntry
- A view into a single occupied location in a
VecMap
. - VacantEntry
- A view into a single vacant location in a
VecMap
. - Values
- An iterator yielding references to a
VecMap
’s values in arbitrary order. - VecMap
- A std::vec::Vec based Map, motivated by the fact that, for some key types,
iterating over a vector can be faster than other methods for small maps.
- Entry
- A view into a single entry in a
VecMap
.