Interface FloatBidirectionalIterator
- All Superinterfaces:
BidirectionalIterator<Float>,FloatIterator,Iterator<Float>,ObjectBidirectionalIterator<Float>,ObjectIterator<Float>,PrimitiveIterator<Float, FloatConsumer>
- All Known Subinterfaces:
FloatBigListIterator,FloatListIterator
- All Known Implementing Classes:
AbstractFloatBidirectionalIterator,AbstractFloatBigListIterator,AbstractFloatListIterator,FloatBigListIterators.AbstractIndexBasedBigListIterator,FloatBigListIterators.BigListIteratorListIterator,FloatBigListIterators.EmptyBigListIterator,FloatBigListIterators.UnmodifiableBigListIterator,FloatIterators.AbstractIndexBasedListIterator,FloatIterators.EmptyIterator,FloatIterators.UnmodifiableBidirectionalIterator,FloatIterators.UnmodifiableListIterator
public interface FloatBidirectionalIterator
extends FloatIterator, ObjectBidirectionalIterator<Float>
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and
the possibility to skip elements backwards.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong -
Method Summary
Modifier and TypeMethodDescriptiondefault intback(int n) Moves back for the given number of elements.default Floatprevious()Deprecated.Please use the corresponding type-specific method instead.floatReturns the previous element as a primitive type.default intskip(int n) Skips the given number of elements.Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPreviousMethods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterator
forEachRemaining, forEachRemaining, forEachRemaining, next, nextFloat
-
Method Details
-
previousFloat
float previousFloat()Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
-
previous
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<Float>- Returns:
- the previous element from the collection.
- See Also:
-
back
default int back(int n) Moves back for the given number of elements.The effect of this call is exactly the same as that of calling
previous()forntimes (possibly stopping ifBidirectionalIterator.hasPrevious()becomes false).- Specified by:
backin interfaceObjectBidirectionalIterator<Float>- Parameters:
n- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
-
skip
default int skip(int n) Skips the given number of elements.The effect of this call is exactly the same as that of calling
FloatIterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceFloatIterator- Specified by:
skipin interfaceObjectBidirectionalIterator<Float>- Specified by:
skipin interfaceObjectIterator<Float>- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-