public interface DoubleBidirectionalIterator extends DoubleIterator, ObjectBidirectionalIterator<Double>
BidirectionalIteratorPrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong| Modifier and Type | Method and Description |
|---|---|
default int |
back(int n)
Moves back for the given number of elements.
|
default Double |
previous()
Deprecated.
Please use the corresponding type-specific method instead.
|
double |
previousDouble()
Returns the previous element as a primitive type.
|
default int |
skip(int n)
Skips the given number of elements.
|
forEachRemaining, next, nextDoubleforEachRemaininghasPreviousdouble previousDouble()
ListIterator.previous()@Deprecated default Double previous()
previous in interface BidirectionalIterator<Double>ListIterator.previous()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 ObjectBidirectionalIterator<Double>n - the number of elements to skip back.previous()default int skip(int n)
The effect of this call is exactly the same as that of calling DoubleIterator.next() for n times (possibly stopping if Iterator.hasNext() becomes false).
skip in interface DoubleIteratorskip in interface ObjectBidirectionalIterator<Double>skip in interface ObjectIterator<Double>n - the number of elements to skip.Iterator.next()Copyright © 2020. All rights reserved.