pub trait PipelineMap<I, M>where
    I: Iterator,
    I::Item: Send + 'static,
    M: Mapper<I::Item> + Clone + Send + 'static,
    M::Out: Send + 'static,
{ fn plmap(self, n_workers: usize, m: M) -> Pipeline<I, M>Notable traits for Pipeline<I, M>impl<I, M> Iterator for Pipeline<I, M>where
    I: Iterator,
    I::Item: Send + 'static,
    M: Mapper<I::Item> + Clone + Send + 'static,
    M::Out: Send + 'static,
type Item = <M as Mapper<I::Item>>::Out;
; }
Expand description

PipelineMap can be imported to add the plmap function to iterators.

Required Methods

Implementors