Package it.unimi.dsi.fastutil.floats
Interface FloatIndirectPriorityQueue
- All Superinterfaces:
IndirectPriorityQueue<java.lang.Float>
- All Known Implementing Classes:
FloatArrayIndirectPriorityQueue,FloatHeapIndirectPriorityQueue,FloatHeapSemiIndirectPriorityQueue
public interface FloatIndirectPriorityQueue extends IndirectPriorityQueue<java.lang.Float>
A type-specific
IndirectPriorityQueue.
Additionally, this interface strengthens comparator().
-
Method Summary
Modifier and Type Method Description FloatComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
Method Details
-
comparator
FloatComparator comparator()Returns the type-specific comparator associated with this queue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<java.lang.Float>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()- API Notes:
- Note that this specification strengthens the one given in
IndirectPriorityQueue.
-