Interface BooleanBidirectionalIterator

All Superinterfaces:
BidirectionalIterator<java.lang.Boolean>, BooleanIterator, java.util.Iterator<java.lang.Boolean>, ObjectBidirectionalIterator<java.lang.Boolean>, ObjectIterator<java.lang.Boolean>, java.util.PrimitiveIterator<java.lang.Boolean,​BooleanConsumer>
All Known Subinterfaces:
BooleanBigListIterator

public interface BooleanBidirectionalIterator
extends BooleanIterator, ObjectBidirectionalIterator<java.lang.Boolean>
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.Boolean previous()
    Deprecated.
    Please use the corresponding type-specific method instead.
    boolean previousBoolean()
    Returns the previous element as a primitive type.
    default int skip​(int 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.booleans.BooleanIterator

    forEachRemaining, forEachRemaining, next, nextBoolean

    Methods inherited from interface java.util.Iterator

    hasNext, remove
  • Method Details

    • previousBoolean

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

      @Deprecated default java.lang.Boolean previous()
      Deprecated.
      Please use the corresponding type-specific method instead.
      Returns the previous element from the collection.
      Specified by:
      previous in interface BidirectionalIterator<java.lang.Boolean>
      Returns:
      the previous element from the collection.
      See Also:
      ListIterator.previous()
    • 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 ObjectBidirectionalIterator<java.lang.Boolean>
      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)
      Skips the given number of elements.

      The effect of this call is exactly the same as that of calling BooleanIterator.next() for n times (possibly stopping if Iterator.hasNext() becomes false).

      Specified by:
      skip in interface BooleanIterator
      Specified by:
      skip in interface ObjectBidirectionalIterator<java.lang.Boolean>
      Specified by:
      skip in interface ObjectIterator<java.lang.Boolean>
      Parameters:
      n - the number of elements to skip.
      Returns:
      the number of elements actually skipped.
      See Also:
      Iterator.next()