[][src]Trait ndarray_parallel::prelude::ParApply2

pub trait ParApply2<P1, P2> {
    fn par_apply<F>(self, function: F)
    where
        F: Fn(P1, P2) + 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) + Sync + Send

Loading content...

Implementations on Foreign Types

impl<Dim: Dimension, P1: NdProducer<Dim = Dim>, P2: NdProducer<Dim = Dim>> ParApply2<<P1 as NdProducer>::Item, <P2 as NdProducer>::Item> for Zip<(P1, P2), Dim> where
    P1::Item: Send,
    P2::Item: Send,
    P1: Send,
    P2: Send
[src]

Loading content...

Implementors

Loading content...