Package it.unimi.dsi.fastutil.doubles
Interface DoubleIndirectPriorityQueue
- All Superinterfaces:
IndirectPriorityQueue<java.lang.Double>
- All Known Implementing Classes:
DoubleArrayIndirectPriorityQueue,DoubleHeapIndirectPriorityQueue,DoubleHeapSemiIndirectPriorityQueue
public interface DoubleIndirectPriorityQueue extends IndirectPriorityQueue<java.lang.Double>
A type-specific
IndirectPriorityQueue.
Additionally, this interface strengthens comparator().
-
Method Summary
Modifier and Type Method Description DoubleComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
Method Details
-
comparator
DoubleComparator comparator()Returns the type-specific comparator associated with this queue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<java.lang.Double>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()- API Notes:
- Note that this specification strengthens the one given in
IndirectPriorityQueue.
-