Trait ColumnRef

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

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

Required Methods§

Source

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

Get a reference to a given column of a matrix

Implementors§