dynamic-grid 0.2.0

Dynamic grid Structure for Rust
Documentation
  • Coverage
  • 95.65%
    22 out of 23 items documented0 out of 22 items with examples
  • Size
  • Source code size: 17.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.78 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • Aniki02/dynamic-grid
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Aniki02

Dynamic grid

Dynamic grid Structure for Rust. It's two dimensional data structure fast and easy to use with no ibligation to have the same number of rows and columns.

classic grid

0,0,0
0,0,0
0,0,0

It's forbidden to have the second row with four value

dynamic grid

0,0
0,0,0,0,0
0,0,0

It's ok with dynamic grid.