MCPcopy
hub / github.com/graphif/project-graph / push

Method push

packages/data-structures/src/Stack.ts:7–9  ·  view source on GitHub ↗
(item: T)

Source from the content-addressed store, hash-verified

5 private stack: T[] = [];
6
7 push(item: T): void {
8 this.stack.push(item);
9 }
10
11 pop(): T | undefined {
12 return this.stack.pop();

Callers 15

computePathMethod · 0.45
computeLinesMethod · 0.45
computeFunctionMethod · 0.45
extendsTjFunction · 0.45
rombergFunction · 0.45
enqueueMethod · 0.45
splitVectorMethod · 0.45
enqueueMethod · 0.45
multiGetTailMethod · 0.45
Stack.test.tsFile · 0.45
MonoStack.test.tsFile · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected