Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/datastructures-js/priority-queue
/ back
Method
back
src/priorityQueue.d.ts:8–8 ·
view source on GitHub ↗
()
Source
from the content-addressed store, hash-verified
6
isEmpty(): boolean;
7
front(): T | null;
8
back(): T | null;
9
enqueue(value: T): PriorityQueue<T>;
10
push(value: T): PriorityQueue<T>;
11
dequeue(): T | null;
Callers
3
maxPriorityQueue.test.js
File · 0.65
PriorityQueue.test.js
File · 0.65
minPriorityQueue.test.js
File · 0.65
Implementers
1
PriorityQueue
src/priorityQueue.js
Calls
no outgoing calls
Tested by
no test coverage detected