peroxide::traits::mutable

Trait ParallelMutFP

Source
pub trait ParallelMutFP {
    type Scalar;

    // Required methods
    fn par_mut_map<F>(&mut self, f: F)
       where F: Fn(Self::Scalar) -> Self::Scalar + Send + Sync;
    fn par_mut_zip_with<F>(&mut self, f: F, other: &Self)
       where F: Fn(Self::Scalar, Self::Scalar) -> Self::Scalar + Send + Sync;
}

Required Associated Types§

Required Methods§

Source

fn par_mut_map<F>(&mut self, f: F)
where F: Fn(Self::Scalar) -> Self::Scalar + Send + Sync,

Source

fn par_mut_zip_with<F>(&mut self, f: F, other: &Self)
where F: Fn(Self::Scalar, Self::Scalar) -> Self::Scalar + Send + Sync,

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ParallelMutFP for Vec<f64>

Source§

type Scalar = f64

Source§

fn par_mut_map<F>(&mut self, f: F)
where F: Fn(Self::Scalar) -> Self::Scalar + Send + Sync,

Source§

fn par_mut_zip_with<F>(&mut self, f: F, other: &Self)
where F: Fn(Self::Scalar, Self::Scalar) -> Self::Scalar + Send + Sync,

Implementors§