No description
Find a file
Armin Becher 4877def932
Column push pop speedup (#14)
* Speedup for push col #10

* Minor linter fixes

* Enhance benchmark for mutated grid

* Speedup pop coll

* Cleanup tests
2022-08-10 19:37:18 +02:00
benches Column push pop speedup (#14) 2022-08-10 19:37:18 +02:00
src Column push pop speedup (#14) 2022-08-10 19:37:18 +02: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 Column push pop speedup (#14) 2022-08-10 19:37:18 +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 }