[][src]Trait higher_order_point::ops::Norm

pub trait Norm {
    type Output;
    fn norm(self) -> Self::Output;
}

Norm operator.

Associated Types

type Output

The output type.

Loading content...

Required methods

fn norm(self) -> Self::Output

Returns the norm.

Loading content...

Implementors

impl Norm for Point[src]

type Output = f64

impl<T: 'static + Copy> Norm for PointFunc<T>[src]

type Output = Func<T, f64>

Loading content...