Package it.unimi.dsi.fastutil.chars
Interface CharIndirectPriorityQueue
- All Superinterfaces:
it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Character>
- All Known Implementing Classes:
CharArrayIndirectPriorityQueue,CharHeapIndirectPriorityQueue,CharHeapSemiIndirectPriorityQueue
public interface CharIndirectPriorityQueue
extends it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.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.Methods inherited from interface it.unimi.dsi.fastutil.IndirectPriorityQueue
allChanged, changed, changed, clear, contains, dequeue, enqueue, first, front, isEmpty, last, remove, size
-
Method Details
-
comparator
CharComparator comparator()Returns the type-specific comparator associated with this queue.- Specified by:
comparatorin interfaceit.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Character>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()- API Notes:
- Note that this specification strengthens the one given in
IndirectPriorityQueue.
-