Available on crate features
map
and rayon
only.Expand description
This module contains the rayon 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
- Parallel draining iterator over entries of a map.
- Into
Iter - Parallel iterator over entries of a consumed map.
- Iter
- Parallel iterator over shared references to entries in a map.
- IterMut
- Parallel iterator over mutable references to entries in a map.
- Keys
- Parallel iterator over shared references to keys in a map.
- Values
- Parallel iterator over shared references to values in a map.
- Values
Mut - Parallel iterator over mutable references to values in a map.