Package it.unimi.dsi.fastutil.longs
Interface LongIndirectPriorityQueue
-
- All Superinterfaces:
IndirectPriorityQueue<java.lang.Long>
- All Known Implementing Classes:
LongArrayIndirectPriorityQueue
,LongHeapIndirectPriorityQueue
,LongHeapSemiIndirectPriorityQueue
public interface LongIndirectPriorityQueue extends IndirectPriorityQueue<java.lang.Long>
A type-specificIndirectPriorityQueue
.Additionally, this interface strengthens
comparator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LongComparator
comparator()
Returns the type-specific comparator associated with this queue.
-
-
-
Method Detail
-
comparator
LongComparator comparator()
Returns the type-specific comparator associated with this queue.Note that this specification strengthens the one given in
IndirectPriorityQueue
.- Specified by:
comparator
in interfaceIndirectPriorityQueue<java.lang.Long>
- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
-
-