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
iter
withf
. - Pack
- An iterator that yields
Vec<Self::Item>
of sizenb
(or less on the last element). - Packed
Flat Map - As
FlatMap
but packed. - Packed
Map - As
Map
but packed. - ParMap
Builder - A builder used to configure the parallele work.
Traits§
- ParMap
- This trait extends
std::iter::Iterator
with parallel iterator adaptors. Justuse
it to get access to the methods: