Trait ndarray_parallel::prelude::ParApply4 [] [src]

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

The par_apply method for Zip.

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

Required Methods

Implementors