Module std::collections::hashmap[src]
Unordered containers, implemented as hash-tables (HashSet and HashMap types)
Structs
| 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 |
Type Definitions
| 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 |