https://github.com/becheran/grid
Two dimensional grid data structure
https://github.com/becheran/grid
2d 2d-array 2d-data 2d-vector data-structure grid rust rust-lang
Last synced: 7 days ago
JSON representation
Two dimensional grid data structure
- Host: GitHub
- URL: https://github.com/becheran/grid
- Owner: becheran
- License: mit
- Created: 2020-03-31T22:05:46.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-02-04T21:52:54.000Z (3 months ago)
- Last Synced: 2025-04-14T18:16:25.107Z (7 days ago)
- Topics: 2d, 2d-array, 2d-data, 2d-vector, data-structure, grid, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 88.9 KB
- Stars: 83
- Watchers: 2
- Forks: 28
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-rust - becheran/grid
- awesome-rust-cn - becheran/grid
- awesome-rust - becheran/grid - Provide a two dimensional data structure that is easy to use and fast. [](https://github.com/becheran/grid/actions) (Libraries / Data structures)
- fucking-awesome-rust - becheran/grid - Provide a two dimensional data structure that is easy to use and fast. [](https://github.com/becheran/grid/actions) (Libraries / Data structures)
- fucking-awesome-rust - becheran/grid - Provide a two dimensional data structure that is easy to use and fast. [](https://github.com/becheran/grid/actions) (Libraries / Data structures)
README
# Grid
[](https://docs.rs/grid)
[](https://crates.io/crates/grid)
[](https://github.com/becheran/grid/actions)
[](https://opensource.org/licenses/MIT)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.To use *grid* with *no_std* import the library such as:
``` toml
grid = { version = "*", default-features = false }
```- [documentation](https://docs.rs/grid/)
- [library on crates.io](https://crates.io/crates/grid)