Struct rayon::par_iter::enumerate::EnumerateProducer [] [src]

pub struct EnumerateProducer<P> { /* fields omitted */ }

//////////////////////////////////////////////////////////////////////// Producer implementation

Trait Implementations

impl<P> Producer for EnumerateProducer<P> where P: Producer
[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<P> IntoIterator for EnumerateProducer<P> where P: Producer
[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