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-specific
IndirectPriorityQueue.
Additionally, this interface strengthens comparator().
-
Method Summary
Modifier and Type Method Description LongComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
Method Details
-
comparator
LongComparator comparator()Returns the type-specific comparator associated with this queue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<java.lang.Long>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()- API Notes:
- Note that this specification strengthens the one given in
IndirectPriorityQueue.
-