Trait ndarray_parallel::prelude::ParApply1
[−]
[src]
pub trait ParApply1<P1> {
fn par_apply<F>(self, function: F)
where
F: Fn(P1) + Sync + Send;
}The par_apply method for Zip.
This is a shorthand for using .into_par_iter().for_each() on
Zip.
Required Methods
Implementations on Foreign Types
impl<Dim: Dimension, P1: NdProducer<Dim = Dim>> ParApply1<P1::Item> for Zip<(P1,), Dim> where
P1::Item: Send,
P1: Send, [src]
P1::Item: Send,
P1: Send,