Package it.unimi.dsi.fastutil.shorts
Interface ShortIterator
- All Known Subinterfaces:
ShortBidirectionalIterator,ShortBigListIterator,ShortListIterator
- All Known Implementing Classes:
AbstractShortBidirectionalIterator,AbstractShortBigListIterator,AbstractShortIterator,AbstractShortListIterator,ShortBigListIterators.BigListIteratorListIterator,ShortBigListIterators.EmptyBigListIterator,ShortBigListIterators.UnmodifiableBigListIterator,ShortIterators.EmptyIterator,ShortIterators.UnmodifiableBidirectionalIterator,ShortIterators.UnmodifiableIterator,ShortIterators.UnmodifiableListIterator
public interface ShortIterator extends Iterator<Short>
A type-specific
Iterator; provides an additional method to avoid
(un)boxing, and the possibility to skip elements.- See Also:
Iterator
-
Method Summary
Modifier and Type Method Description default voidforEachRemaining(ShortConsumer action)Performs the given action for each remaining element until all elements have been processed or the action throws an exception.default voidforEachRemaining(Consumer<? super Short> action)Deprecated.Please use the corresponding type-specific method instead.default Shortnext()Deprecated.Please use the corresponding type-specific method instead.shortnextShort()Returns the next element as a primitive type.default intskip(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:
Iterator.next()
-
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.- Parameters:
action- the action to be performed for each element.- Since:
- 8.0.0
- See Also:
Iterator.forEachRemaining(java.util.function.Consumer)
-
forEachRemaining
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
forEachRemainingin 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()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-