Package it.unimi.dsi.fastutil.shorts
Interface ShortIndirectPriorityQueue
- All Superinterfaces:
IndirectPriorityQueue<Short>
- All Known Implementing Classes:
ShortArrayIndirectPriorityQueue,ShortHeapIndirectPriorityQueue,ShortHeapSemiIndirectPriorityQueue
public interface ShortIndirectPriorityQueue extends IndirectPriorityQueue<Short>
A type-specific
IndirectPriorityQueue.
Additionally, this interface strengthens comparator().
-
Method Summary
Modifier and Type Method Description ShortComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
Method Details
-
comparator
ShortComparator comparator()Returns the type-specific comparator associated with this queue.Note that this specification strengthens the one given in
IndirectPriorityQueue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<Short>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
-