Package 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-specificIndirectPriorityQueue
.Additionally, this interface strengthens
comparator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IntComparator
comparator()
Returns the type-specific comparator associated with this queue.
-
-
-
Method Detail
-
comparator
IntComparator comparator()
Returns the type-specific comparator associated with this queue.- Specified by:
comparator
in interfaceIndirectPriorityQueue<java.lang.Integer>
- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
- API Notes:
- Note that this specification strengthens the one given in
IndirectPriorityQueue
.
-
-