[][src]Module sudokugen::board

The Board module contains representations of a sudoku Board as well as the representation of a cell location inside a board CellLoc.

Usually you'd use the Board structure directly to create a board using the new method or by parsing it from a string. You might also use the CellLoc structure to reference a location in the board, but the cell_at method of the board instance is more convenient to address cells of a specific board.

Structs

Board

Represents a sudoku board.

CellLoc

Represents a cell location in the board.

MalformedBoardError

Error returned when the representation of the board cannot be parsed successfully.