No description
Find a file
2021-11-05 17:35:17 +01:00
benches Speedup benches 2020-04-06 20:30:53 +02:00
src Remove several unnecessary "Clone" bounds 2021-11-04 14:39:52 +03:00
.gitignore Initial commit 2020-04-01 00:05:47 +02:00
.gitlab-ci.yml Add no default to test run 2021-08-22 19:21:38 +02:00
Cargo.toml (cargo-release) start next development iteration 0.5.1-alpha.0 2021-08-22 19:29:00 +02:00
LICENSE Initial commit 2020-04-01 00:05:47 +02:00
README.md Update docs 2021-08-22 19:20:39 +02:00

Grid

Build Status

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 }