ColumnRefMut

Trait ColumnRefMut 

Source
pub trait ColumnRefMut: Column {
    // Required method
    fn get_column_ref_mut(&mut self, col: usize) -> &mut Self::Output;
}
Expand description

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

Required Methods§

Source

fn get_column_ref_mut(&mut self, col: usize) -> &mut Self::Output

Get a mutable reference to a given column of a matrix

Implementors§