Package it.unimi.dsi.fastutil.bytes
Interface ByteIndirectPriorityQueue
-
- All Superinterfaces:
IndirectPriorityQueue<Byte>
- All Known Implementing Classes:
ByteArrayIndirectPriorityQueue
,ByteHeapIndirectPriorityQueue
,ByteHeapSemiIndirectPriorityQueue
public interface ByteIndirectPriorityQueue extends IndirectPriorityQueue<Byte>
A type-specificIndirectPriorityQueue
.Additionally, this interface strengthens
comparator()
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ByteComparator
comparator()
Returns the type-specific comparator associated with this queue.
-
-
-
Method Detail
-
comparator
ByteComparator comparator()
Returns the type-specific comparator associated with this queue.Note that this specification strengthens the one given in
IndirectPriorityQueue
.- Specified by:
comparator
in interfaceIndirectPriorityQueue<Byte>
- Returns:
- the comparator associated with this queue.
- See Also:
IndirectPriorityQueue.comparator()
-
-