Trait guff_matrix::Matrix[][src]

pub trait Matrix<E> {
    const IS_ROWWISE: bool;

    fn rows(&self) -> usize;
fn cols(&self) -> usize; fn is_rowwise(&self) -> bool { ... }
fn rowcol_to_index(&self, r: usize, c: usize) -> usize { ... } }

Associated Constants

Required methods

Provided methods

Implementors