pub trait HouseholderWorkImpl: Sized {
    type Elem: Scalar;

    fn new(l: MatrixLayout) -> Result<Self>;
    fn calc(&mut self, a: &mut [Self::Elem]) -> Result<&[Self::Elem]>;
    fn eval(self, a: &mut [Self::Elem]) -> Result<Vec<Self::Elem>>;
}

Required Associated Types

Required Methods

Implementors