[][src]Trait splines::interpolate::Linear

pub trait Linear<T>: Additive {
    fn outer_mul(self, t: T) -> Self;
fn outer_div(self, t: T) -> Self; }

Set of additive types that support outer multiplication and division, making them linear.

Required methods

fn outer_mul(self, t: T) -> Self

Apply an outer multiplication law.

fn outer_div(self, t: T) -> Self

Apply an outer division law.

Loading content...

Implementations on Foreign Types

impl Linear<f32> for f32[src]

fn outer_div(self, t: f32) -> Self[src]

Apply an outer division law.

impl Linear<f64> for f64[src]

fn outer_div(self, t: f64) -> Self[src]

Apply an outer division law.

impl Linear<f32> for f64[src]

fn outer_div(self, t: f32) -> Self[src]

Apply an outer division law.

impl Linear<f64> for f32[src]

fn outer_div(self, t: f64) -> Self[src]

Apply an outer division law.

Loading content...

Implementors

Loading content...