Expand description
A hash map where values are uniquely indexed by two keys.
For more information, see BiHashMap
.
Structs§
- BiHash
Map - A 1:1 (bijective) map for two keys and a value.
- Into
Iter - An iterator over the elements of a
BiHashMap
by ownership. Created byBiHashMap::into_iter
. - Iter
- An iterator over the elements of a
BiHashMap
by shared reference. Created byBiHashMap::iter
. - IterMut
- An iterator over the elements of a
BiHashMap
by mutable reference. Created byBiHashMap::iter_mut
. - Occupied
Entry - A view into an occupied entry in a
BiHashMap
. Part of theEntry
enum. - RefMut
- A mutable reference to a
BiHashMap
item. - Vacant
Entry - A vacant entry.
Enums§
- Entry
- An implementation of the Entry API for
BiHashMap
. - Occupied
Entry Mut - A mutable view into an occupied entry in a
BiHashMap
. - Occupied
Entry Ref - A view into an occupied entry in a
BiHashMap
.
Traits§
- BiHash
Item - An item in a
BiHashMap
.