Iterator methods
This is the collection of iterator methods within the Store
interface. There are only three iterator methods, forEachTable
, forEachRow
, and forEachCell
.
forEachTable
The forEachTable
method takes a function that it will then call for each Table
in the Store
.
forEachRow
The forEachRow
method takes a function that it will then call for each Row
in a specified Table
.
forEachCell
The forEachCell
method takes a function that it will then call for each Cell
in a specified Row
.