[src]

Module collections::hashmap

Unordered containers, implemented as hash-tables (HashSet and HashMap types)

HashMap

A hash map implementation which uses linear probing with Robin Hood bucket stealing.

HashSet

An implementation of a hash set using the underlying representation of a HashMap where the value is (). As with the HashMap type, a HashSet requires that the elements implement the Eq and Hash traits.

Entries

HashMap iterator

Keys

HashMap keys iterator

MoveEntries

HashMap move iterator

MutEntries

HashMap mutable values iterator

SetAlgebraItems

Set operations iterator

SetItems

HashSet iterator

SetMoveItems

HashSet move iterator

Values

HashMap values iterator