Iterator methods
This is the collection of iterator methods within the Queries
interface. There are 4 iterator methods in total.
forEachResultTable
The forEachResultTable
method takes a function that it will then call for each result Table
in the Queries
object.
forEachResultRow
The forEachResultRow
method takes a function that it will then call for each Row
in the result Table
of a query.
forEachResultCell
The forEachResultCell
method takes a function that it will then call for each Cell
in the result Row
of a query.
forEachQuery
The forEachQuery
method takes a function that it will then call for each Query in the Queries
object.