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§
Sourcefn get_column_ref_mut(&mut self, col: usize) -> &mut Self::Output
fn get_column_ref_mut(&mut self, col: usize) -> &mut Self::Output
Get a mutable reference to a given column of a matrix