pub trait WithGridIterator<T> {
// Required method
fn iter_row_col(&self) -> ProductRange;
}
Expand description
Allows iterating over (row, col) values of the grid.
Required Methods§
Sourcefn iter_row_col(&self) -> ProductRange
fn iter_row_col(&self) -> ProductRange
Iterate over (row, col) values of the grid.