pub trait RcondWorkImpl {
    type Elem: Scalar;

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

Required Associated Types

Required Methods

Implementors