pub trait OperatorNormWorkImpl {
    type Elem: Scalar;

    fn new(t: NormType, l: MatrixLayout) -> Self;
    fn calc(&mut self, a: &[Self::Elem]) -> <Self::Elem as Scalar>::Real;
}

Required Associated Types

Required Methods

Implementors