Trait RowRefMut

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

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

Required Methods§

Source

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

Get a mutable reference to a given row of a matrix

Implementors§