Expand description
This crate provides an easy way to get parallel iteration. The
contract of the added method are (almost) exacly the same as the
method without the par_ prefix proposed in std.
Structs§
- FlatMap
- An iterator that maps each element to an iterator, and yields the elements of the produced iterators.
- Map
- An iterator that maps the values of
iterwithf. - Pack
- An iterator that yields
Vec<Self::Item>of sizenb(or less on the last element). - Packed
Flat Map - As
FlatMapbut packed. - Packed
Map - As
Mapbut packed. - ParMap
Builder - A builder used to configure the parallele work.
Traits§
- ParMap
- This trait extends
std::iter::Iteratorwith parallel iterator adaptors. Justuseit to get access to the methods: