[][src]Crate rahashmap

Structs

DefaultHasher

The default Hasher used by RandomState.

Drain

A draining iterator over the entries of a HashMap.

HashMap

A hash map implemented with linear probing and Robin Hood bucket stealing.

IntoIter

An owning iterator over the entries of a HashMap.

Iter

An iterator over the entries of a HashMap.

IterMut

A mutable iterator over the entries of a HashMap.

Keys

An iterator over the keys of a HashMap.

OccupiedEntry

A view into an occupied entry in a HashMap. It is part of the Entry enum.

RandomState

RandomState is the default state for HashMap types.

SafeHash

A hash that is not zero, since we use a hash of zero to represent empty buckets.

VacantEntry

A view into a vacant entry in a HashMap. It is part of the Entry enum.

Values

An iterator over the values of a HashMap.

ValuesMut

A mutable iterator over the values of a HashMap.

Enums

Entry

A view into a single entry in a map, which may either be vacant or occupied.

Functions

make_hash

We need to remove hashes of 0. That's reserved for empty buckets. This function wraps up hash_keyed to be the only way outside this module to generate a SafeHash.