MCPcopy Create free account
hub / github.com/datastructures-js/priority-queue / pop

Method pop

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

Source from the content-addressed store, hash-verified

10 push(value: T): PriorityQueue<T>;
11 dequeue(): T | null;
12 pop(): T | null;
13 remove(cb: (value: T) => boolean): T[];
14 contains(cb: (value: T) => boolean): boolean;
15 toArray(): T[];

Implementers 1

PriorityQueuesrc/priorityQueue.js

Calls

no outgoing calls

Tested by

no test coverage detected