pub trait PipelineMap<I, M>where
I: Iterator,
I::Item: Send + 'static,
M: Mapper<I::Item> + Clone + Send + 'static,
M::Out: Send + 'static,{
// Required method
fn plmap(self, n_workers: usize, m: M) -> Pipeline<I, M> ⓘ;
}Expand description
PipelineMap can be imported to add the plmap function to iterators.