Package it.unimi.dsi.fastutil.shorts
Interface ShortBidirectionalIterator
- All Superinterfaces:
it.unimi.dsi.fastutil.BidirectionalIterator<java.lang.Short>,java.util.Iterator<java.lang.Short>,it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Short>,it.unimi.dsi.fastutil.objects.ObjectIterator<java.lang.Short>,java.util.PrimitiveIterator<java.lang.Short,ShortConsumer>,it.unimi.dsi.fastutil.shorts.ShortIterator
- All Known Subinterfaces:
ShortBigListIterator,ShortListIterator
- All Known Implementing Classes:
AbstractShortBidirectionalIterator,AbstractShortBigListIterator,AbstractShortListIterator,ShortBigListIterators.AbstractIndexBasedBigListIterator,ShortBigListIterators.BigListIteratorListIterator,ShortBigListIterators.EmptyBigListIterator,ShortBigListIterators.UnmodifiableBigListIterator,ShortIterators.AbstractIndexBasedListIterator,ShortIterators.EmptyIterator,ShortIterators.UnmodifiableBidirectionalIterator,ShortIterators.UnmodifiableListIterator
public interface ShortBidirectionalIterator
extends it.unimi.dsi.fastutil.shorts.ShortIterator, it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Short>
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.Shortprevious()Deprecated.Please use the corresponding type-specific method instead.shortpreviousShort()Returns the previous element as a primitive type.default intskip(int n)Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator
hasPreviousMethods inherited from interface java.util.Iterator
hasNext, removeMethods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterator
forEachRemaining, 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 default java.lang.Short previous()Deprecated.Please use the corresponding type-specific method instead.- Specified by:
previousin interfaceit.unimi.dsi.fastutil.BidirectionalIterator<java.lang.Short>
-
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 interfaceit.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.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)- Specified by:
skipin interfaceit.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Short>- Specified by:
skipin interfaceit.unimi.dsi.fastutil.objects.ObjectIterator<java.lang.Short>- Specified by:
skipin interfaceit.unimi.dsi.fastutil.shorts.ShortIterator
-