Interface FloatBigListIterator

All Superinterfaces:
BidirectionalIterator<Float>, BigListIterator<Float>, FloatBidirectionalIterator, FloatIterator, Iterator<Float>, ObjectBidirectionalIterator<Float>, ObjectIterator<Float>
All Known Implementing Classes:
AbstractFloatBigListIterator, FloatBigListIterators.BigListIteratorListIterator, FloatBigListIterators.EmptyBigListIterator, FloatBigListIterators.UnmodifiableBigListIterator

public interface FloatBigListIterator
extends FloatBidirectionalIterator, BigListIterator<Float>
A type-specific BigListIterator.
See Also:
BigListIterator
  • Method Summary

    Modifier and Type Method Description
    default void add​(float k)
    Inserts the specified element into the list (optional operation).
    default void add​(Float 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​(float k)
    Replaces the last element returned by next() or previous() with the specified element (optional operation).
    default void set​(Float 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 it.unimi.dsi.fastutil.floats.FloatBidirectionalIterator

    back, previous, previousFloat

    Methods inherited from interface it.unimi.dsi.fastutil.floats.FloatIterator

    forEachRemaining, forEachRemaining, next, nextFloat

    Methods inherited from interface java.util.Iterator

    hasNext, remove