PriorityQueue a min priority queue backed by a pairing heap
count
number of elements in queue
empty
true if no more elements in queue
forEach apply f to each element of the queue
function to apply
isHeap check heap condition (for testing)
true if queue is in valid state
pop remove and return the min element from the queue
push put things on the heap
reduceKey reduce the key value of the specified heap node
top
the top element (the min element as defined by lessThan)
Generated using TypeDoc
PriorityQueue a min priority queue backed by a pairing heap