2020-04-01 21:29:06 +00:00
|
|
|
# Grid
|
|
|
|
|
2021-02-11 22:09:20 +00:00
|
|
|
[](https://docs.rs/grid)
|
2020-04-06 18:38:23 +00:00
|
|
|
[](https://crates.io/crates/grid)
|
|
|
|
[](https://crates.io/crates/grid)
|
|
|
|
[](https://gitlab.com/becheran/grid_ci/pipelines)
|
|
|
|
[](https://opensource.org/licenses/MIT)
|
|
|
|
|
2020-04-24 09:18:42 +00:00
|
|
|
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](https://doc.rust-lang.org/std/vec/struct.Vec.html) type for one dimensional vectors
|
|
|
|
is implemented for two dimensions in this crate.
|
2020-04-06 18:38:23 +00:00
|
|
|
|
2021-08-22 17:20:39 +00:00
|
|
|
To use *grid* with *no_std* import the library such as:
|
|
|
|
|
|
|
|
``` toml
|
|
|
|
grid = { version = "*", default-features = false }
|
|
|
|
```
|
|
|
|
|
2020-04-06 18:38:23 +00:00
|
|
|
- [documentation](https://docs.rs/grid/)
|
|
|
|
- [library on crates.io](https://crates.io/crates/grid)
|