Package it.unimi.dsi.fastutil.ints
Interface IntBidirectionalIterator
- All Superinterfaces:
BidirectionalIterator<java.lang.Integer>,IntIterator,java.util.Iterator<java.lang.Integer>,ObjectBidirectionalIterator<java.lang.Integer>,ObjectIterator<java.lang.Integer>,java.util.PrimitiveIterator<java.lang.Integer,java.util.function.IntConsumer>,java.util.PrimitiveIterator.OfInt
- All Known Subinterfaces:
IntBigListIterator,IntListIterator
- All Known Implementing Classes:
AbstractIntBidirectionalIterator,AbstractIntBigListIterator,AbstractIntListIterator,IntBigListIterators.AbstractIndexBasedBigListIterator,IntBigListIterators.BigListIteratorListIterator,IntBigListIterators.EmptyBigListIterator,IntBigListIterators.UnmodifiableBigListIterator,IntIterators.AbstractIndexBasedListIterator,IntIterators.EmptyIterator,IntIterators.UnmodifiableBidirectionalIterator,IntIterators.UnmodifiableListIterator
public interface IntBidirectionalIterator extends IntIterator, ObjectBidirectionalIterator<java.lang.Integer>
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
java.util.PrimitiveIterator.OfDouble, java.util.PrimitiveIterator.OfInt, java.util.PrimitiveIterator.OfLong -
Method Summary
Modifier and Type Method Description default intback(int n)Moves back for the given number of elements.default java.lang.Integerprevious()Deprecated.Please use the corresponding type-specific method instead.intpreviousInt()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
hasPreviousMethods inherited from interface it.unimi.dsi.fastutil.ints.IntIterator
forEachRemaining, forEachRemaining, next, nextIntMethods inherited from interface java.util.Iterator
hasNext, removeMethods inherited from interface java.util.PrimitiveIterator.OfInt
forEachRemaining
-
Method Details
-
previousInt
int previousInt()Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
previous
@Deprecated default java.lang.Integer previous()Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<java.lang.Integer>- 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<java.lang.Integer>- 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
IntIterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceIntIterator- Specified by:
skipin interfaceObjectBidirectionalIterator<java.lang.Integer>- Specified by:
skipin interfaceObjectIterator<java.lang.Integer>- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-