pub trait NormL1 {
    type Output;

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

L1 Norm trait.

Required Associated Types

Type of the norm.

Required Methods

Norm of the element.

Implementations on Foreign Types

Implementors