grixy 0.2.0

2-dimensional grids
Documentation
1
2
3
4
5
6
7
/// Marker type for a 2-dimensional grid.
///
/// No functionality is provided by this trait other than an associated type, [`GridBase::Element`].
pub trait GridBase {
    /// The element stored in the grid at a specific position.
    type Element;
}