Package it.unimi.dsi.fastutil.shorts
Interface ShortBidirectionalIterator
- All Superinterfaces:
BidirectionalIterator<Short>,Iterator<Short>,ObjectBidirectionalIterator<Short>,ObjectIterator<Short>,ShortIterator
- All Known Subinterfaces:
ShortBigListIterator,ShortListIterator
- All Known Implementing Classes:
AbstractShortBidirectionalIterator,AbstractShortBigListIterator,AbstractShortListIterator,ShortBigListIterators.BigListIteratorListIterator,ShortBigListIterators.EmptyBigListIterator,ShortBigListIterators.UnmodifiableBigListIterator,ShortIterators.EmptyIterator,ShortIterators.UnmodifiableBidirectionalIterator,ShortIterators.UnmodifiableListIterator
public interface ShortBidirectionalIterator extends ShortIterator, ObjectBidirectionalIterator<Short>
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
Modifier and Type Method Description default intback(int n)Moves back for the given number of elements.default Shortprevious()Deprecated.Please use the corresponding type-specific method instead.shortpreviousShort()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.shorts.ShortIterator
forEachRemaining, forEachRemaining, next, nextShort
-
Method Details
-
previousShort
short previousShort()Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
previous
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<Short>- 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<Short>- 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
ShortIterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceObjectBidirectionalIterator<Short>- Specified by:
skipin interfaceObjectIterator<Short>- Specified by:
skipin interfaceShortIterator- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-