pub trait ScopedPipelineMap<'scope, 'env, I, M>where
I: Iterator,
I::Item: Send + 'env,
M: Mapper<I::Item> + Clone + Send + 'env,
M::Out: Send + 'env,{
// Required method
fn scoped_plmap(
self,
worker_scope: &'scope Scope<'env>,
n_workers: usize,
m: M,
) -> ScopedPipeline<'scope, 'env, I, M> ⓘ;
}Expand description
ScopedPipelineMap can be imported to add the scoped_plmap function to iterators.