public interface FloatBidirectionalIterator
extends it.unimi.dsi.fastutil.floats.FloatIterator, it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>
BidirectionalIterator| Modifier and Type | Method and Description |
|---|---|
default int |
back(int n)
Moves back for the given number of elements.
|
default java.lang.Float |
previous()
Deprecated.
Please use the corresponding type-specific method instead.
|
float |
previousFloat()
Returns the previous element as a primitive type.
|
default int |
skip(int n) |
float previousFloat()
ListIterator.previous()@Deprecated default java.lang.Float previous()
previous in interface it.unimi.dsi.fastutil.BidirectionalIterator<java.lang.Float>default int back(int n)
The effect of this call is exactly the same as that of
calling previous() for n times (possibly stopping
if BidirectionalIterator.hasPrevious() becomes false).
back in interface it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>n - the number of elements to skip back.previous()default int skip(int n)
skip in interface it.unimi.dsi.fastutil.floats.FloatIteratorskip in interface it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>skip in interface it.unimi.dsi.fastutil.objects.ObjectIterator<java.lang.Float>