[][src]Trait numeric_algs::State

pub trait State: Clone {
    type Derivative: StateDerivative;
    fn shift_in_place(&mut self, dir: &Self::Derivative, amount: f64);

    fn shift(&self, dir: &Self::Derivative, amount: f64) -> Self { ... }
}

Associated Types

Loading content...

Required methods

fn shift_in_place(&mut self, dir: &Self::Derivative, amount: f64)

Loading content...

Provided methods

fn shift(&self, dir: &Self::Derivative, amount: f64) -> Self

Loading content...

Implementors

Loading content...