I'm having some troubles working out how to iterate through every row in a grid
If I use like "each x in grid.value" I get each column separately. And I can do it if I refer to each row with the index like "each x in count y" and then "grid.value[x]" that seems to be an option but I can't seem to find a way of getting the total size so that I know how far to go.
Is there something I'm missing? Is there a cleverer way of doing this?