(
tableId: Id,
tableCellCallback: TableCellCallback,
)
| 2025 | ); |
| 2026 | |
| 2027 | const forEachTableCell = ( |
| 2028 | tableId: Id, |
| 2029 | tableCellCallback: TableCellCallback, |
| 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) => |
nothing calls this directly
no test coverage detected
searching dependent graphs…