Package it.unimi.dsi.fastutil.chars
Interface CharIndirectPriorityQueue
-
- All Superinterfaces:
IndirectPriorityQueue<java.lang.Character>
- All Known Implementing Classes:
CharArrayIndirectPriorityQueue,CharHeapIndirectPriorityQueue,CharHeapSemiIndirectPriorityQueue
public interface CharIndirectPriorityQueue extends IndirectPriorityQueue<java.lang.Character>
A type-specificIndirectPriorityQueue.Additionally, this interface strengthens
comparator().
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CharComparatorcomparator()Returns the type-specific comparator associated with this queue.
-
-
-
Method Detail
-
comparator
CharComparator comparator()
Returns the type-specific comparator associated with this queue.- Specified by:
comparatorin interfaceIndirectPriorityQueue<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.
-
-