Package it.unimi.dsi.fastutil.ints
Interface IntIndirectPriorityQueue
-
- All Superinterfaces:
IndirectPriorityQueue<Integer>
- All Known Implementing Classes:
IntArrayIndirectPriorityQueue,IntHeapIndirectPriorityQueue,IntHeapSemiIndirectPriorityQueue
public interface IntIndirectPriorityQueue extends IndirectPriorityQueue<Integer>
A type-specificIndirectPriorityQueue.Additionally, this interface strengthens
comparator().
-
-
Method Summary
Modifier and Type Method Description IntComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
-
-
Method Detail
-
comparator
IntComparator comparator()
Returns the type-specific comparator associated with this queue.Note that this specification strengthens the one given in
IndirectPriorityQueue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<Integer>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
-
-