#grid #data-structures #array #2d #2d-vector #2d-array

dynamic-grid

Dynamic grid Structure for Rust

2 unstable releases

0.2.0 Jun 2, 2021
0.1.0 May 26, 2021

#20 in #2d-array

MIT license

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.

No runtime deps