it.unimi.dsi.fastutil.ints
Interface IntIndirectPriorityQueue

All Superinterfaces:
IndirectPriorityQueue<java.lang.Integer>
All Known Implementing Classes:
IntArrayIndirectPriorityQueue, IntHeapIndirectPriorityQueue, IntHeapSemiIndirectPriorityQueue

public interface IntIndirectPriorityQueue
extends IndirectPriorityQueue<java.lang.Integer>

A type-specific IndirectPriorityQueue.

Additionally, this interface strengthens comparator().


Method Summary
 IntComparator 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

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

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