[][src]Trait ndarray_parallel::prelude::ParApply6

pub trait ParApply6<P1, P2, P3, P4, P5, P6> {
    fn par_apply<F>(self, function: F)
    where
        F: Fn(P1, P2, P3, P4, P5, P6) + Sync + Send
; }

The par_apply method for Zip.

This is a shorthand for using .into_par_iter().for_each() on Zip.

Required methods

fn par_apply<F>(self, function: F) where
    F: Fn(P1, P2, P3, P4, P5, P6) + Sync + Send

Loading content...

Implementations on Foreign Types

impl<Dim: Dimension, P1: NdProducer<Dim = Dim>, P2: NdProducer<Dim = Dim>, P3: NdProducer<Dim = Dim>, P4: NdProducer<Dim = Dim>, P5: NdProducer<Dim = Dim>, P6: NdProducer<Dim = Dim>> ParApply6<<P1 as NdProducer>::Item, <P2 as NdProducer>::Item, <P3 as NdProducer>::Item, <P4 as NdProducer>::Item, <P5 as NdProducer>::Item, <P6 as NdProducer>::Item> for Zip<(P1, P2, P3, P4, P5, P6), Dim> where
    P1::Item: Send,
    P2::Item: Send,
    P3::Item: Send,
    P4::Item: Send,
    P5::Item: Send,
    P6::Item: Send,
    P1: Send,
    P2: Send,
    P3: Send,
    P4: Send,
    P5: Send,
    P6: Send
[src]

Loading content...

Implementors

Loading content...