MCPcopy Index your code
hub / github.com/datastructures-js/priority-queue / push

Method push

src/priorityQueue.d.ts:10–10  ·  view source on GitHub ↗
(value: T)

Source from the content-addressed store, hash-verified

8 back(): T | null;
9 enqueue(value: T): PriorityQueue<T>;
10 push(value: T): PriorityQueue<T>;
11 dequeue(): T | null;
12 pop(): T | null;
13 remove(cb: (value: T) => boolean): T[];

Callers 5

removeMethod · 0.65
containsMethod · 0.65

Implementers 1

PriorityQueuesrc/priorityQueue.js

Calls

no outgoing calls

Tested by

no test coverage detected