becheran / grid

Two dimensional grid data structure
MIT License
82 stars 27 forks source link
2d 2d-array 2d-data 2d-vector data-structure grid rust rust-lang

Grid

docs crates.io build status license

Data structure grid for rust. Provide a two dimensional data structure for rust that is easy to use and fast. Most of the functionality provided by the std::vec::Vec type for one dimensional vectors is implemented for two dimensions in this crate.

To use grid with no_std import the library such as:

grid = { version = "*", default-features = false }