(tableId: Id, rowId: Id, cellId: Id)
| 1547 | collHas(mapGet(tablesMap, id(tableId)), id(rowId)); |
| 1548 | |
| 1549 | const hasCell = (tableId: Id, rowId: Id, cellId: Id): boolean => |
| 1550 | collHas(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), id(cellId)); |
| 1551 | |
| 1552 | const hasValues = (): boolean => !collIsEmpty(valuesMap); |
| 1553 |
no test coverage detected
searching dependent graphs…