Iterator methods
This is the collection of iterator methods within the MergeableStore
interface. There are 5 iterator methods in total.
forEachTable
The forEachTable
method takes a function that it will then call for each Table
in the Store
.
forEachTableCell
The forEachTableCell
method takes a function that it will then call for each Cell
used across the whole Table
.
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
.