Trait graphblas_sparse_linear_algebra::collections::sparse_matrix::GetMatrixElementCoordinate
source · pub trait GetMatrixElementCoordinate {
// Required methods
fn coordinate(&self) -> Coordinate;
fn coordinate_ref(&self) -> &Coordinate;
fn row_index(&self) -> ElementIndex;
fn row_index_ref(&self) -> &ElementIndex;
fn column_index(&self) -> ElementIndex;
fn column_index_ref(&self) -> &ElementIndex;
}