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

Function hasCell

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

Source from the content-addressed store, hash-verified

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);
1876 const hasValue = (valueId) => collHas(valuesMap, id(valueId));
1877 const getTablesJson = () => jsonStringWithMap(tablesMap);

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…