Expand description
A hash map where values are uniquely indexed by three keys.
For more information, see TriHashMap
.
Structs§
- Into
Iter - An iterator over the elements of a
TriHashMap
by ownership. Created byTriHashMap::into_iter
. - Iter
- An iterator over the elements of a
TriHashMap
by shared reference. Created byTriHashMap::iter
. - IterMut
- An iterator over the elements of a
TriHashMap
by mutable reference. Created byTriHashMap::iter_mut
. - RefMut
- A mutable reference to a
TriHashMap
item. - TriHash
Map - A 1:1:1 (trijective) map for three keys and a value.
Traits§
- TriHash
Item - An item in a
TriHashMap
.