Trait lax::rcond::RcondWorkImpl

source ·
pub trait RcondWorkImpl {
    type Elem: Scalar;

    // Required methods
    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§

source

type Elem: Scalar

Required Methods§

source

fn new(l: MatrixLayout) -> Self

source

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

Object Safety§

This trait is not object safe.

Implementors§