Module tri_hash_map

Source
Expand description

A hash map where values are uniquely indexed by three keys.

For more information, see TriHashMap.

Structs§

IntoIter
An iterator over the elements of a TriHashMap by ownership. Created by TriHashMap::into_iter.
Iter
An iterator over the elements of a TriHashMap by shared reference. Created by TriHashMap::iter.
IterMut
An iterator over the elements of a TriHashMap by mutable reference. Created by TriHashMap::iter_mut.
RefMut
A mutable reference to a TriHashMap item.
TriHashMap
A 1:1:1 (trijective) map for three keys and a value.

Traits§

TriHashItem
An item in a TriHashMap.