Module im::hashmap [] [src]

A hash map.

An immutable hash map using hash array mapped tries.

Most operations on this map are theoretically O(log n), but will in practice be closer to O(1).

Map entries will have a predictable order based on the hasher being used. Unless otherwise specified, all maps will share an instance of the default std::collections::hash_map::RandomState hasher, which will produce consistent hashes for the duration of its lifetime, but not between restarts of your program.

Structs

HashMap
HashMapLens
Keys
Values