Interface FloatBidirectionalIterator

All Superinterfaces:
it.unimi.dsi.fastutil.BidirectionalIterator<java.lang.Float>, it.unimi.dsi.fastutil.floats.FloatIterator, java.util.Iterator<java.lang.Float>, it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>, it.unimi.dsi.fastutil.objects.ObjectIterator<java.lang.Float>, java.util.PrimitiveIterator<java.lang.Float,​FloatConsumer>
All Known Subinterfaces:
FloatBigListIterator, FloatListIterator
All Known Implementing Classes:
AbstractFloatBidirectionalIterator, AbstractFloatBigListIterator, AbstractFloatListIterator, FloatBigListIterators.AbstractIndexBasedBigListIterator, FloatBigListIterators.BigListIteratorListIterator, FloatBigListIterators.EmptyBigListIterator, FloatBigListIterators.UnmodifiableBigListIterator, FloatIterators.AbstractIndexBasedListIterator, FloatIterators.EmptyIterator, FloatIterators.UnmodifiableBidirectionalIterator, FloatIterators.UnmodifiableListIterator

public interface FloatBidirectionalIterator
extends it.unimi.dsi.fastutil.floats.FloatIterator, it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>
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 int back​(int n)
    Moves back for the given number of elements.
    default java.lang.Float previous()
    Deprecated.
    Please use the corresponding type-specific method instead.
    float previousFloat()
    Returns the previous element as a primitive type.
    default int skip​(int n)

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

    hasPrevious

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

    forEachRemaining, forEachRemaining, forEachRemaining, next, nextFloat

    Methods inherited from interface java.util.Iterator

    hasNext, remove
  • Method Details

    • previousFloat

      float previousFloat()
      Returns the previous element as a primitive type.
      Returns:
      the previous element in the iteration.
      See Also:
      ListIterator.previous()
    • previous

      @Deprecated default java.lang.Float previous()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Specified by:
      previous in interface it.unimi.dsi.fastutil.BidirectionalIterator<java.lang.Float>
    • 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() for n times (possibly stopping if BidirectionalIterator.hasPrevious() becomes false).

      Specified by:
      back in interface it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>
      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:
      skip in interface it.unimi.dsi.fastutil.floats.FloatIterator
      Specified by:
      skip in interface it.unimi.dsi.fastutil.objects.ObjectBidirectionalIterator<java.lang.Float>
      Specified by:
      skip in interface it.unimi.dsi.fastutil.objects.ObjectIterator<java.lang.Float>