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§
Sourcefn get_row_ref(&self, row: usize) -> &Self::Output
fn get_row_ref(&self, row: usize) -> &Self::Output
Get a reference to a given row of a matrix