Skip to main content

Module hash_map

Module hash_map 

Source
Expand description

Provides TotalHashMap, a hash map in which every possible key has an associated value. Only entries with uncommon values are actually stored in the map; all other keys are presumed to be associated with a common value.

Structsยง

AsHashMapMut
A mutable view into the underlying HashMap of a TotalHashMap.
Drain
A draining iterator over the uncommon entries in a TotalHashMap.
Entry
A view into a single entry in a TotalHashMap.
IntoIter
An owning iterator over the uncommon entries in a TotalHashMap.
IntoKeys
An owning iterator over the keys associated with uncommon values in a TotalHashMap.
IntoValues
An owning iterator over the uncommon values in a TotalHashMap.
Iter
An iterator over the uncommon entries in a TotalHashMap.
Keys
An iterator over the keys associated with uncommon values in a TotalHashMap.
TotalHashMap
A hash map in which every possible key has an associated value. Only entries with uncommon values are actually stored in the map; all other keys are presumed to be associated with a common value.
Values
An iterator over the uncommon values in a TotalHashMap.