2 unstable releases
0.2.0 | Jun 2, 2021 |
---|---|
0.1.0 | May 26, 2021 |
#25 in #2d-array
17KB
321 lines
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.