pub trait Norm {
    type Length;
    fn length(&self) -> Self::Length;
}

Associated Types

Required methods

Implementors