Represents a 2d grid like an array. To encapsulate the whole [y*width + x] thing.
Creates a new GC-backed array
Wraps an existing array.
Supports if(point in grid) {}
Slice operation gives a view into the underlying 1d array.
See Implementation
Added May 3, 2020
Represents a 2d grid like an array. To encapsulate the whole [y*width + x] thing.