Yield all the values of a grid, left-to-right, top-to-bottom.
This is just a wrapper around Grids.values:
yield* values(grid, cells(grid, start, wrap)); Copy
yield* values(grid, cells(grid, start, wrap));
See also: cells: Iterate over cell coordinates cellsAndValues: Iterate over pairs of cell coordinates and cell values
Optional
Yield all the values of a grid, left-to-right, top-to-bottom.
This is just a wrapper around Grids.values:
See also: cells: Iterate over cell coordinates cellsAndValues: Iterate over pairs of cell coordinates and cell values