pub trait BasicMatrixOpt<'a, T>where
    Self: BasicMatrix<'a, T>,
    T: Copy + Clone,
{ fn to_matrixfull(&self) -> Option<MatrixFull<T>>
    where
        T: Copy + Clone
, { ... } }

Provided Methods

Implementors