luciopaiva / heapify

The fastest JavaScript priority queue out there. Zero dependencies.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature: peek() and pop() variants that return key and priority

Feuermurmel opened this issue · comments

I.e. something like this:

popItem(): [number, number] | undefined;
peekItem(): [number, number] | undefined;