Interface ShortBigListIterator

All Superinterfaces:
BidirectionalIterator<Short>, BigListIterator<Short>, Iterator<Short>, ObjectBidirectionalIterator<Short>, ObjectIterator<Short>, ShortBidirectionalIterator, ShortIterator
All Known Implementing Classes:
AbstractShortBigListIterator, ShortBigListIterators.BigListIteratorListIterator, ShortBigListIterators.EmptyBigListIterator, ShortBigListIterators.UnmodifiableBigListIterator

public interface ShortBigListIterator
extends ShortBidirectionalIterator, BigListIterator<Short>
A type-specific BigListIterator.
See Also:
BigListIterator
  • Method Summary

    Modifier and Type Method Description
    default void add​(short k)
    Inserts the specified element into the list (optional operation).
    default void add​(Short k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    default long back​(long n)
    Moves back for the given number of elements.
    default void set​(short k)
    Replaces the last element returned by next() or previous() with the specified element (optional operation).
    default void set​(Short k)
    Deprecated.
    Please use the corresponding type-specific method instead.
    default int skip​(int n)
    Skips the given number of elements.
    default long skip​(long n)
    Skips the given number of elements.

    Methods inherited from interface it.unimi.dsi.fastutil.BidirectionalIterator

    hasPrevious

    Methods inherited from interface it.unimi.dsi.fastutil.BigListIterator

    nextIndex, previousIndex

    Methods inherited from interface java.util.Iterator

    hasNext, remove

    Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortBidirectionalIterator

    back, previous, previousShort

    Methods inherited from interface it.unimi.dsi.fastutil.shorts.ShortIterator

    forEachRemaining, forEachRemaining, next, nextShort