Module hash
Source Available on crate features collections and contiguous only.
Expand description
Collections based on the Hash trait, including HashMap and HashSet
for storing unique values or key-value pairs.
- map
- A module containing
HashMap and associtated types. - set
- A module containing
HashSet and associtated types.
- HashMap
- A map of keys to values which relies on the keys implementing
Hash. - HashSet
- A set of values that prevents duplicates with the help of the
Hash trait.