MCPcopy Index your code
hub / github.com/tinyplex/tinybase / hasTableCell

Function hasTableCell

docs/pseudo.esm.sh/tinybase@9.0.0/index.js:1872–1872  ·  view source on GitHub ↗
(tableId, cellId)

Source from the content-addressed store, hash-verified

1870 const hasTables = () => !collIsEmpty(tablesMap);
1871 const hasTable = (tableId) => collHas(tablesMap, id(tableId));
1872 const hasTableCell = (tableId, cellId) => collHas(mapGet(tableCellIds, id(tableId)), id(cellId));
1873 const hasRow = (tableId, rowId) => collHas(mapGet(tablesMap, id(tableId)), id(rowId));
1874 const hasCell = (tableId, rowId, cellId) => collHas(mapGet(mapGet(tablesMap, id(tableId)), id(rowId)), id(cellId));
1875 const hasValues = () => !collIsEmpty(valuesMap);

Callers 1

createStoreFunction · 0.70

Calls 3

collHasFunction · 0.70
mapGetFunction · 0.70
idFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…