pub trait Row { type Output; // Required method fn get_row(&self, row: usize) -> Self::Output; }
This type abstracts a matrix where you can get a copy of a row
Get a copy of a given row of a matrix