(tableId: Id, rowCallback: RowCallback)
| 2030 | ): void => mapForEach(mapGet(tableCellIds, id(tableId)), tableCellCallback); |
| 2031 | |
| 2032 | const forEachRow = (tableId: Id, rowCallback: RowCallback): void => |
| 2033 | collForEach(mapGet(tablesMap, id(tableId)), (rowMap, rowId) => |
| 2034 | rowCallback(rowId, (cellCallback) => |
| 2035 | mapForEach(rowMap, (cellId, cell) => |
| 2036 | cellCallback(cellId, decodeIfJson(cell)), |
| 2037 | ), |
| 2038 | ), |
| 2039 | ); |
| 2040 | |
| 2041 | const forEachCell = ( |
| 2042 | tableId: Id, |
no test coverage detected
searching dependent graphs…