MCPcopy Create free account
hub / github.com/tinyplex/tinybase / forEachIndex

Function forEachIndex

docs/pseudo.esm.sh/tinybase@9.0.0/index.js:914–919  ·  view source on GitHub ↗
(indexCallback)

Source from the content-addressed store, hash-verified

912 return indexes;
913 };
914 const forEachIndex = (indexCallback) => forEachIndexImpl(
915 (indexId, slices) => indexCallback(
916 indexId,
917 (sliceCallback) => forEachSliceImpl(indexId, sliceCallback, slices)
918 )
919 );
920 const forEachSlice = (indexId, sliceCallback) => forEachSliceImpl(indexId, sliceCallback, getIndex(indexId));
921 const forEachSliceImpl = (indexId, sliceCallback, slices) => {
922 const tableId = getTableId(indexId);

Callers

nothing calls this directly

Calls 1

forEachSliceImplFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…