MCPcopy
hub / github.com/tinyplex/tinybase / arrayPush

Function arrayPush

src/common/array.ts:92–93  ·  view source on GitHub ↗
(array: Value[], ...values: Value[])

Source from the content-addressed store, hash-verified

90 array.splice(0, to);
91
92export const arrayPush = <Value>(array: Value[], ...values: Value[]): number =>
93 array.push(...values);
94
95export const arrayPop = <Value>(array: Value[]): Value | undefined =>
96 array.pop();

Callers 15

addCallbackFunction · 0.90
selectFunction · 0.90
joinFunction · 0.90
whereFunction · 0.90
groupFunction · 0.90
havingFunction · 0.90
setQueryDefinitionImplFunction · 0.90
storeChangedFunction · 0.90
goForwardImplFunction · 0.90
cellInvalidFunction · 0.90
valueInvalidFunction · 0.90
objectStoreMatchFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…