array2d icon indicating copy to clipboard operation
array2d copied to clipboard

A statically-sized two-dimensional array written in Rust

Results 3 array2d issues
Sort by recently updated
recently updated
newest added

If I was using a vec of vecs, this would be reasonably easy: if they're in the same inner vec then just ```rust arr.swap(index1, index2) ``` and if they're in...

Proposal: support for Array2d slices. Array2d is a very useful type for two-dimensional data storage. I've used it extensively while solving Advent of Code and Everybody Codes puzzles[1]. However, one...

thanks for this useful library! as noted in other issues it's great to reflect game boards 🙂 the iterator methods are really handy, however i lack the possibility to have...