MCPcopy Create free account
hub / github.com/dbeaver/cloudbeaver / push

Method push

webapp/packages/core-utils/src/PriorityQueue.ts:43–49  ·  view source on GitHub ↗
(...values: T[])

Source from the content-addressed store, hash-verified

41 }
42
43 push(...values: T[]) {
44 values.forEach(value => {
45 this._heap.push(value);
46 this.siftUp();
47 });
48 return this.size();
49 }
50
51 pop(): T {
52 const poppedValue = this.peek();

Callers 15

formatMethod · 0.80
formatMethod · 0.80
loadFunction · 0.80
registerSettingsMethod · 0.80
tryExecuteOperationFunction · 0.80
registerActionMethod · 0.80
deleteFiltersMethod · 0.80
deleteOrdersMethod · 0.80
setFilterMethod · 0.80

Calls 3

siftUpMethod · 0.95
sizeMethod · 0.95
forEachMethod · 0.45

Tested by

no test coverage detected