Package it.unimi.dsi.fastutil.longs
Interface LongIndirectPriorityQueue
-
- All Superinterfaces:
IndirectPriorityQueue<Long>
- All Known Implementing Classes:
LongArrayIndirectPriorityQueue,LongHeapIndirectPriorityQueue,LongHeapSemiIndirectPriorityQueue
public interface LongIndirectPriorityQueue extends IndirectPriorityQueue<Long>
A type-specificIndirectPriorityQueue.Additionally, this interface strengthens
comparator().
-
-
Method Summary
Modifier and Type Method Description LongComparatorcomparator()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:
comparatorin interfaceIndirectPriorityQueue<Long>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
-
-