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

Function collValues

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

Source from the content-addressed store, hash-verified

105var collHas = (coll, keyOrValue) => coll?.has(keyOrValue) ?? false;
106var collIsEmpty = (coll) => isUndefined(coll) || collSize(coll) == 0;
107var collValues = (coll) => [...coll?.values() ?? []];
108var collClear = (coll) => coll.clear();
109var collForEach = (coll, cb) => coll?.forEach(cb);
110var collDel = (coll, keyOrValue) => coll?.delete(keyOrValue);

Callers 6

collSizeNFunction · 0.70
delStoreListenersFunction · 0.70
getSliceRowIdsFunction · 0.70
getAggregateValueFunction · 0.70
getLocalRowIdsFunction · 0.70
getLinkedRowIdsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…