Package it.unimi.dsi.fastutil.chars
Interface CharIndirectPriorityQueue
- All Superinterfaces:
IndirectPriorityQueue<Character>
- All Known Implementing Classes:
CharArrayIndirectPriorityQueue,CharHeapIndirectPriorityQueue,CharHeapSemiIndirectPriorityQueue
public interface CharIndirectPriorityQueue extends IndirectPriorityQueue<Character>
A type-specific
IndirectPriorityQueue.
Additionally, this interface strengthens comparator().
-
Method Summary
Modifier and Type Method Description CharComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
Method Details
-
comparator
CharComparator comparator()Returns the type-specific comparator associated with this queue.Note that this specification strengthens the one given in
IndirectPriorityQueue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<Character>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
-