[][src]Trait peroxide::operation::mut_ops::MutFP

pub trait MutFP {
    type Scalar;
    fn mut_map<F>(&mut self, f: F)
    where
        F: Fn(Self::Scalar) -> Self::Scalar
;
fn mut_zip_with<F>(&mut self, f: F, other: &Self)
    where
        F: Fn(Self::Scalar, Self::Scalar) -> Self::Scalar
; }

Associated Types

type Scalar

Loading content...

Required methods

fn mut_map<F>(&mut self, f: F) where
    F: Fn(Self::Scalar) -> Self::Scalar

fn mut_zip_with<F>(&mut self, f: F, other: &Self) where
    F: Fn(Self::Scalar, Self::Scalar) -> Self::Scalar

Loading content...

Implementations on Foreign Types

impl MutFP for Vec<f64>[src]

type Scalar = f64

Loading content...

Implementors

Loading content...