Package it.unimi.dsi.fastutil.doubles
Interface DoubleBidirectionalIterator
-
- All Superinterfaces:
BidirectionalIterator<Double>,DoubleIterator,Iterator<Double>,ObjectBidirectionalIterator<Double>,ObjectIterator<Double>,PrimitiveIterator<Double,DoubleConsumer>,PrimitiveIterator.OfDouble
- All Known Subinterfaces:
DoubleBigListIterator,DoubleListIterator
- All Known Implementing Classes:
AbstractDoubleBidirectionalIterator,AbstractDoubleBigListIterator,AbstractDoubleListIterator,DoubleBigListIterators.BigListIteratorListIterator,DoubleBigListIterators.EmptyBigListIterator,DoubleBigListIterators.UnmodifiableBigListIterator,DoubleIterators.EmptyIterator,DoubleIterators.UnmodifiableBidirectionalIterator,DoubleIterators.UnmodifiableListIterator
public interface DoubleBidirectionalIterator extends DoubleIterator, ObjectBidirectionalIterator<Double>
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements backwards.- See Also:
BidirectionalIterator
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong
-
-
Method Summary
Modifier and Type Method Description default intback(int n)Moves back for the given number of elements.default Doubleprevious()Deprecated.Please use the corresponding type-specific method instead.doublepreviousDouble()Returns 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
hasPrevious
-
Methods inherited from interface it.unimi.dsi.fastutil.doubles.DoubleIterator
forEachRemaining, next, nextDouble
-
Methods inherited from interface java.util.PrimitiveIterator.OfDouble
forEachRemaining
-
-
-
-
Method Detail
-
previousDouble
double previousDouble()
Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
previous
@Deprecated default Double previous()
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<Double>- 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()forntimes (possibly stopping ifBidirectionalIterator.hasPrevious()becomes false).- Specified by:
backin interfaceObjectBidirectionalIterator<Double>- 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
DoubleIterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceDoubleIterator- Specified by:
skipin interfaceObjectBidirectionalIterator<Double>- Specified by:
skipin interfaceObjectIterator<Double>- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-
-