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
TriHashMapby ownership. Created byTriHashMap::into_iter. - Iter
- An iterator over the elements of a
TriHashMapby shared reference. Created byTriHashMap::iter. - IterMut
- An iterator over the elements of a
TriHashMapby mutable reference. Created byTriHashMap::iter_mut. - RefMut
- A mutable reference to a
TriHashMapitem. - TriHash
Map - A 1:1:1 (trijective) map for three keys and a value.
Traits§
- TriHash
Item - An item in a
TriHashMap.