Package it.unimi.dsi.fastutil.bytes
Interface ByteIndirectPriorityQueue
- All Superinterfaces:
it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Byte>
- All Known Implementing Classes:
ByteArrayIndirectPriorityQueue,ByteHeapIndirectPriorityQueue,ByteHeapSemiIndirectPriorityQueue
public interface ByteIndirectPriorityQueue
extends it.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Byte>
A type-specific
IndirectPriorityQueue.
Additionally, this interface strengthens comparator().
-
Method Summary
Modifier and Type Method Description ByteComparatorcomparator()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
ByteComparator comparator()Returns the type-specific comparator associated with this queue.- Specified by:
comparatorin interfaceit.unimi.dsi.fastutil.IndirectPriorityQueue<java.lang.Byte>- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()- API Notes:
- Note that this specification strengthens the one given in
IndirectPriorityQueue.
-