Question
Use a Collective Specifier to get Array of Arrays?
Suppose I have a table. I can do this:
var cells = resolve(table.columns.everyItem().cells.everyItem().toSpecifier());This gives me every cell in the table.
But what if I wanted it as an array of arrays of cells? That is, an array, where each element is the array of cells in that column. Is such a thing possible?