No description
Find a file
Isaac Cloos 3c02c36274
Alternate Debug Formatting (#20)
* 🧪 `.alternate()` debug formatting

* 🔭 width relative spacing

* 🔪 precision + width

* 💅🔬 pretty int, float, tuple, struct tests

* updates from feedback

1. removed width calculation from iterator
2. added disclaimer to default calculations
3. added test for pretty printing empty grids
2022-08-19 22:10:20 +02:00
.github/workflows Add github action 2022-08-17 21:41:07 +02:00
benches Add must_use and cleanup benchmark 2022-08-13 14:24:07 +02:00
src Alternate Debug Formatting (#20) 2022-08-19 22:10:20 +02:00
.gitignore Initial commit 2020-04-01 00:05:47 +02:00
Cargo.toml (cargo-release) start next development iteration 0.8.2-alpha.0 2022-08-17 21:51:02 +02:00
LICENSE Initial commit 2020-04-01 00:05:47 +02:00
README.md Move to github actions 2022-08-17 21:48:23 +02:00

Grid

docs crates.io build status license

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 }