rust-grid 0.1.1

Very minimal library to store large grids of any type in memory, with a user-friendly interface
Documentation
1
2
3
4
5
6
7
8
9
#[derive(Clone, Debug)]
pub struct Row<T> {
    pub cells: Vec<T>
}

#[derive(Debug)]
pub struct Grid<T> {
    pub rows: Vec<Row<T>>
}