pub trait NormLInf {
    type Output;

    fn norm_l_inf(self) -> Self::Output;
}
Expand description

L-inf Norm trait.

Required Associated Types

Type of the norm.

Required Methods

Norm of the element.

Implementations on Foreign Types

Implementors