Module rayon::collections::hash_map[][src]

Expand description

This module contains the parallel iterator types for hash maps (HashMap<K, V>). You will rarely need to interact with it directly unless you have need to name one of the iterator types.

Structs

Drain

Draining parallel iterator that moves out of a hash map, but keeps the total capacity.

IntoIter

Parallel iterator over a hash map

Iter

Parallel iterator over an immutable reference to a hash map

IterMut

Parallel iterator over a mutable reference to a hash map