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

Function arrayPop

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

Source from the content-addressed store, hash-verified

95var arrayClear = (array, to) => array.splice(0, to);
96var arrayPush = (array, ...values) => array.push(...values);
97var arrayPop = (array) => array.pop();
98var arrayUnshift = (array, ...values) => array.unshift(...values);
99var arrayShift = (array) => array.shift();
100var collSizeN = (collSizer) => (coll) => arrayReduce(collValues(coll), (total, coll2) => total + collSizer(coll2), 0);

Callers 2

storeUnchangedFunction · 0.70
goBackwardImplFunction · 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…