Trait ndarray_parallel::prelude::ParApply3 [] [src]

pub trait ParApply3<P1, P2, P3> {
    fn par_apply<F>(self, function: F)
    where
        F: Fn(P1, P2, P3) + 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>, P2: NdProducer<Dim = Dim>, P3: NdProducer<Dim = Dim>> ParApply3<P1::Item, P2::Item, P3::Item> for Zip<(P1, P2, P3), Dim> where
    P1::Item: Send,
    P2::Item: Send,
    P3::Item: Send,
    P1: Send,
    P2: Send,
    P3: Send
[src]

[src]

Implementors