Package it.unimi.dsi.fastutil.floats
Interface FloatBidirectionalIterator
-
- All Superinterfaces:
BidirectionalIterator<java.lang.Float>
,FloatIterator
,java.util.Iterator<java.lang.Float>
,ObjectBidirectionalIterator<java.lang.Float>
,ObjectIterator<java.lang.Float>
- All Known Subinterfaces:
FloatBigListIterator
,FloatListIterator
- All Known Implementing Classes:
AbstractFloatBidirectionalIterator
,AbstractFloatBigListIterator
,AbstractFloatListIterator
,FloatBigListIterators.BigListIteratorListIterator
,FloatBigListIterators.EmptyBigListIterator
,FloatBigListIterators.UnmodifiableBigListIterator
,FloatIterators.EmptyIterator
,FloatIterators.UnmodifiableBidirectionalIterator
,FloatIterators.UnmodifiableListIterator
public interface FloatBidirectionalIterator extends FloatIterator, ObjectBidirectionalIterator<java.lang.Float>
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements backwards.- See Also:
BidirectionalIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method 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)
Skips the given number of elements.-
Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPrevious
-
Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterator
forEachRemaining, forEachRemaining, next, nextFloat
-
-
-
-
Method Detail
-
previousFloat
float previousFloat()
Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
previous
@Deprecated default java.lang.Float previous()
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previous
in interfaceBidirectionalIterator<java.lang.Float>
- Returns:
- the previous element from the collection.
- See Also:
ListIterator.previous()
-
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()
forn
times (possibly stopping ifBidirectionalIterator.hasPrevious()
becomes false).- Specified by:
back
in interfaceObjectBidirectionalIterator<java.lang.Float>
- Parameters:
n
- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
previous()
-
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()
forn
times (possibly stopping ifIterator.hasNext()
becomes false).- Specified by:
skip
in interfaceFloatIterator
- Specified by:
skip
in interfaceObjectBidirectionalIterator<java.lang.Float>
- Specified by:
skip
in interfaceObjectIterator<java.lang.Float>
- Parameters:
n
- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-
-