pub trait MatrixCompare<T> {
// Required methods
fn row_count(&self) -> usize;
fn col_count(&self) -> usize;
fn at(&self, i: usize, j: usize) -> &T;
}
Expand description
Used by crate::assert_matrix_eq
to compare objects that are matrices in a
very general sense.