Struct rayon::par_iter::map::MapProducer [] [src]

pub struct MapProducer<'m, P, MAP_OP: 'm> { /* fields omitted */ }

Trait Implementations

impl<'m, P, MAP_OP> Producer for MapProducer<'m, P, MAP_OP> where P: Producer, MAP_OP: MapOp<P::Item>
[src]

Reports whether the producer has explicit weights.

Cost to produce len items, where len must be N.

Split into two producers; one produces items 0..index, the other index..N. Index must be less than N. Read more

impl<'m, P, MAP_OP> IntoIterator for MapProducer<'m, P, MAP_OP> where P: Producer, MAP_OP: MapOp<P::Item>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

Creates an iterator from a value. Read more