it.unimi.dsi.fastutil.longs
Interface LongIndirectPriorityQueue

All Superinterfaces:
IndirectPriorityQueue<Long>
All Known Implementing Classes:
LongArrayIndirectPriorityQueue, LongHeapIndirectPriorityQueue, LongHeapSemiIndirectPriorityQueue

public interface LongIndirectPriorityQueue
extends IndirectPriorityQueue<Long>

A type-specific IndirectPriorityQueue.

Additionally, this interface strengthens comparator().


Method Summary
 LongComparator comparator()
          Returns the comparator associated with this queue.
 
Methods inherited from interface it.unimi.dsi.fastutil.IndirectPriorityQueue
allChanged, changed, changed, clear, contains, dequeue, enqueue, first, front, isEmpty, last, remove, size
 

Method Detail

comparator

LongComparator comparator()
Returns the comparator associated with this queue. Note that this specification strengthens the one given in IndirectPriorityQueue.

Specified by:
comparator in interface IndirectPriorityQueue<Long>
Returns:
the comparator associated with this queue.
See Also:
IndirectPriorityQueue.comparator()