gridit 0.1.0

2D grid library utilizing the fun of iterators
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A 2D Grid Library which utilizes the fun of Iterators.
//! The entry point is the [Grid] struct.   
//! The Grid has iterators for Rows and Columns and also
//! for iterators depending on a [Position].
//! E.g get the neighbor cells of a position with [Grid::neighbors] or
//! cells depending of a pattern from a given position with [Grid::pattern].

mod grid;
pub mod iter;
pub mod pattern;
mod step;

pub use grid::{Grid, Position};
pub use iter::PositionsEnumerator;
pub use step::Step;