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

Function forEachCell

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

Source from the content-addressed store, hash-verified

2253 )
2254 );
2255 const forEachCell = (tableId, rowId, cellCallback) => mapForEach(
2256 mapGet(mapGet(tablesMap, id(tableId)), id(rowId)),
2257 (cellId, cell) => cellCallback(cellId, decodeIfJson(cell))
2258 );
2259 const forEachValue = (valueCallback) => mapForEach(
2260 valuesMap,
2261 (valueId, value) => valueCallback(valueId, decodeIfJson(value))

Callers

nothing calls this directly

Calls 4

mapForEachFunction · 0.70
mapGetFunction · 0.70
idFunction · 0.70
decodeIfJsonFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…