(tableId, rowCallback)
| 2243 | ); |
| 2244 | const forEachTableCell = (tableId, tableCellCallback) => mapForEach(mapGet(tableCellIds, id(tableId)), tableCellCallback); |
| 2245 | const forEachRow = (tableId, rowCallback) => collForEach( |
| 2246 | mapGet(tablesMap, id(tableId)), |
| 2247 | (rowMap, rowId) => rowCallback( |
| 2248 | rowId, |
| 2249 | (cellCallback) => mapForEach( |
| 2250 | rowMap, |
| 2251 | (cellId, cell) => cellCallback(cellId, decodeIfJson(cell)) |
| 2252 | ) |
| 2253 | ) |
| 2254 | ); |
| 2255 | const forEachCell = (tableId, rowId, cellCallback) => mapForEach( |
| 2256 | mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), |
| 2257 | (cellId, cell) => cellCallback(cellId, decodeIfJson(cell)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…