(tableId, tableCellCallback)
| 2242 | ) |
| 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( |
nothing calls this directly
no test coverage detected
searching dependent graphs…