Trait RowRef

Source
pub trait RowRef: Row {
    // Required method
    fn get_row_ref(&self, row: usize) -> &Self::Output;
}
Expand description

This type abstracts a matrix where you can get a reference of a row

Required Methods§

Source

fn get_row_ref(&self, row: usize) -> &Self::Output

Get a reference to a given row of a matrix

Implementors§