Trait WithGridIterator

Source
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§

Source

fn iter_row_col(&self) -> ProductRange

Iterate over (row, col) values of the grid.

Implementations on Foreign Types§

Source§

impl<T> WithGridIterator<T> for Grid<T>

Implementors§