Converts an 1D or 2D array of cell coordinates into values
// 1D (ie an array of coordinates)const cells = Grid.As.cells(grid);for (const v of Grid.values(grid, cells)) {} Copy
// 1D (ie an array of coordinates)const cells = Grid.As.cells(grid);for (const v of Grid.values(grid, cells)) {}
// 2D (ie an array of rows)const rows = Grid.As.rows(grid);for (const v of Grid.values(grid, rows)) {} Copy
// 2D (ie an array of rows)const rows = Grid.As.rows(grid);for (const v of Grid.values(grid, rows)) {}
Converts an 1D or 2D array of cell coordinates into values
Param: grid
Param: iter