Package it.unimi.dsi.fastutil.shorts
Interface ShortIterator
- All Superinterfaces:
Iterator<Short>
,PrimitiveIterator<Short,
ShortConsumer>
- All Known Subinterfaces:
ShortBidirectionalIterator
,ShortBigListIterator
,ShortListIterator
- All Known Implementing Classes:
AbstractShortBidirectionalIterator
,AbstractShortBigListIterator
,AbstractShortIterator
,AbstractShortListIterator
,ShortBigListIterators.AbstractIndexBasedBigIterator
,ShortBigListIterators.AbstractIndexBasedBigListIterator
,ShortBigListIterators.BigListIteratorListIterator
,ShortBigListIterators.EmptyBigListIterator
,ShortBigListIterators.UnmodifiableBigListIterator
,ShortIterators.AbstractIndexBasedIterator
,ShortIterators.AbstractIndexBasedListIterator
,ShortIterators.EmptyIterator
,ShortIterators.UnmodifiableBidirectionalIterator
,ShortIterators.UnmodifiableIterator
,ShortIterators.UnmodifiableListIterator
A type-specific
Iterator
; provides an additional method to avoid (un)boxing, and the
possibility to skip elements.- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong
-
Method Summary
Modifier and TypeMethodDescriptiondefault void
forEachRemaining
(ShortConsumer action) Performs the given action for each remaining element until all elements have been processed or the action throws an exception.default void
forEachRemaining
(Consumer<? super Short> action) Deprecated.Please use the corresponding type-specific method instead.default void
forEachRemaining
(IntConsumer action) Performs the given action for each remaining element, performing widening primitive casts, until all elements have been processed or the action throws an exception.default Short
next()
Deprecated.Please use the corresponding type-specific method instead.short
Returns the next element as a primitive type.default int
skip
(int n) Skips the given number of elements.
-
Method Details
-
nextShort
short nextShort()Returns the next element as a primitive type.- Returns:
- the next element in the iteration.
- See Also:
-
next
Deprecated.Please use the corresponding type-specific method instead. -
forEachRemaining
Performs the given action for each remaining element until all elements have been processed or the action throws an exception.- Specified by:
forEachRemaining
in interfacePrimitiveIterator<Short,
ShortConsumer> - Parameters:
action
- the action to be performed for each element.- Since:
- 8.0.0
- See Also:
- API Notes:
- Implementing classes should generally override this method, and take the default implementation of the other overloads which will delegate to this method (after proper conversions).
-
forEachRemaining
Performs the given action for each remaining element, performing widening primitive casts, until all elements have been processed or the action throws an exception.- Parameters:
action
- the action to be performed for each element.- Since:
- 8.5.0
- See Also:
- Implementation Notes:
- Unless the argument is type-specific, this method will introduce an intermediary lambda to perform widening casts. Please use the type-specific overload to avoid this overhead.
-
forEachRemaining
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
forEachRemaining
in interfaceIterator<Short>
-
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
next()
forn
times (possibly stopping ifIterator.hasNext()
becomes false).- Parameters:
n
- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-