public interface FloatPriorityDequeue extends FloatPriorityQueue
| Modifier and Type | Method and Description |
|---|---|
default java.lang.Float |
dequeueLast()
Deprecated.
|
float |
dequeueLastFloat()
A Method to remove a element from the last place instead of the first
|
default void |
enqueueFirst(java.lang.Float e)
Deprecated.
|
void |
enqueueFirstFloat(float e)
Method to insert a element into the first Index instead of the last.
|
default java.lang.Float |
last()
Deprecated.
|
default float |
lastFloat()
Peeking function for the last element
|
comparator, dequeue, dequeueFloat, enqueue, enqueueFloat, first, firstFloat, onChanged, peek, peekFloat, remove, removeFloat, removeLast, removeLastFloat, toArray, toArray, toFloatArray, toFloatArrayclear, isEmpty, sizeforEach, forEach, iterator, spliteratorvoid enqueueFirstFloat(float e)
e - the element that should be inserted into the first placefloat dequeueLastFloat()
java.util.NoSuchElementException - if no element is in the dequedefault float lastFloat()
@Deprecated default void enqueueFirst(java.lang.Float e)
e - the boxed element that should be inserted@Deprecated default java.lang.Float dequeueLast()
java.util.NoSuchElementException - if no element is in the dequeue@Deprecated default java.lang.Float last()