Package it.unimi.dsi.fastutil.booleans
Interface BooleanBidirectionalIterator
- All Superinterfaces:
BidirectionalIterator<Boolean>
,BooleanIterator
,Iterator<Boolean>
,ObjectBidirectionalIterator<Boolean>
,ObjectIterator<Boolean>
,PrimitiveIterator<Boolean,
BooleanConsumer>
- All Known Subinterfaces:
BooleanBigListIterator
,BooleanListIterator
- All Known Implementing Classes:
AbstractBooleanBidirectionalIterator
,AbstractBooleanBigListIterator
,AbstractBooleanListIterator
,BooleanBigListIterators.AbstractIndexBasedBigListIterator
,BooleanBigListIterators.BigListIteratorListIterator
,BooleanBigListIterators.EmptyBigListIterator
,BooleanBigListIterators.UnmodifiableBigListIterator
,BooleanIterators.AbstractIndexBasedListIterator
,BooleanIterators.EmptyIterator
,BooleanIterators.UnmodifiableBidirectionalIterator
,BooleanIterators.UnmodifiableListIterator
public interface BooleanBidirectionalIterator
extends BooleanIterator, ObjectBidirectionalIterator<Boolean>
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and
the possibility to skip elements backwards.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface java.util.PrimitiveIterator
PrimitiveIterator.OfDouble, PrimitiveIterator.OfInt, PrimitiveIterator.OfLong
-
Method Summary
Modifier and TypeMethodDescriptiondefault int
back
(int n) Moves back for the given number of elements.default Boolean
previous()
Deprecated.Please use the corresponding type-specific method instead.boolean
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
-
Method Details
-
previousBoolean
boolean previousBoolean()Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
-
previous
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previous
in interfaceBidirectionalIterator<Boolean>
- Returns:
- the previous element from the collection.
- See Also:
-
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()
forn
times (possibly stopping ifBidirectionalIterator.hasPrevious()
becomes false).- Specified by:
back
in interfaceObjectBidirectionalIterator<Boolean>
- Parameters:
n
- the number of elements to skip back.- Returns:
- the number of elements actually skipped.
- See Also:
-
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()
forn
times (possibly stopping ifIterator.hasNext()
becomes false).- Specified by:
skip
in interfaceBooleanIterator
- Specified by:
skip
in interfaceObjectBidirectionalIterator<Boolean>
- Specified by:
skip
in interfaceObjectIterator<Boolean>
- Parameters:
n
- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-