Trait sudoku::Grid [] [src]

pub trait Grid: Index<Point> {
    fn points(&self) -> Vec<Point>;
}

Represents an n-dimensional grid of values, indexable via Point.

Required Methods

Returns all points in the grid.

Useful for enumeration with Iterator::zip.

Implementors