Iterator methods
This is the collection of iterator methods within the Store
interface. There are 4 iterator methods in total.
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
.
forEachValue
The forEachValue
method takes a function that it will then call for each Value
in a Store
.