Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 3 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 (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-22T09:45:19.000Z (about 1 month ago)
- Last Synced: 2025-01-18T05:02:49.333Z (10 days ago)
- Topics: 2d, 2d-array, 2d-data, 2d-vector, data-structure, grid, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 85 KB
- Stars: 83
- Watchers: 3
- Forks: 28
- Open Issues: 6
-
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. [![build status](https://github.com/becheran/grid/actions/workflows/rust.yml/badge.svg)](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. [![build status](https://github.com/becheran/grid/actions/workflows/rust.yml/badge.svg)](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. [![build status](https://github.com/becheran/grid/actions/workflows/rust.yml/badge.svg)](https://github.com/becheran/grid/actions) (Libraries / Data structures)
README
# Grid
[![docs](https://docs.rs/grid/badge.svg)](https://docs.rs/grid)
[![crates.io](https://badgen.net/crates/d/grid)](https://crates.io/crates/grid)
[![build status](https://github.com/becheran/grid/actions/workflows/rust.yml/badge.svg)](https://github.com/becheran/grid/actions)
[![license](https://img.shields.io/badge/License-MIT-yellow.svg)](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)