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

Method size

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

Source from the content-addressed store, hash-verified

3export interface PriorityQueue<T> extends Iterable<T> {
4 [Symbol.iterator](): Iterator<T, any, undefined>;
5 size(): number;
6 isEmpty(): boolean;
7 front(): T | null;
8 back(): T | null;

Callers 4

sizeMethod · 0.65

Implementers 1

PriorityQueuesrc/priorityQueue.js

Calls

no outgoing calls

Tested by

no test coverage detected