Package it.unimi.dsi.fastutil.chars
Interface CharBidirectionalIterator
-
- All Superinterfaces:
BidirectionalIterator<java.lang.Character>,CharIterator,java.util.Iterator<java.lang.Character>,ObjectBidirectionalIterator<java.lang.Character>,ObjectIterator<java.lang.Character>,java.util.PrimitiveIterator<java.lang.Character,CharConsumer>
- All Known Subinterfaces:
CharBigListIterator,CharListIterator
- All Known Implementing Classes:
AbstractCharBidirectionalIterator,AbstractCharBigListIterator,AbstractCharListIterator,CharBigListIterators.AbstractIndexBasedBigListIterator,CharBigListIterators.BigListIteratorListIterator,CharBigListIterators.EmptyBigListIterator,CharBigListIterators.UnmodifiableBigListIterator,CharIterators.AbstractIndexBasedListIterator,CharIterators.EmptyIterator,CharIterators.UnmodifiableBidirectionalIterator,CharIterators.UnmodifiableListIterator
public interface CharBidirectionalIterator extends CharIterator, ObjectBidirectionalIterator<java.lang.Character>
A type-specific bidirectional iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements backwards.- See Also:
BidirectionalIterator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default intback(int n)Moves back for the given number of elements.default java.lang.Characterprevious()Deprecated.Please use the corresponding type-specific method instead.charpreviousChar()Returns the previous element as a primitive type.default intskip(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.chars.CharIterator
forEachRemaining, forEachRemaining, forEachRemaining, next, nextChar
-
-
-
-
Method Detail
-
previousChar
char previousChar()
Returns the previous element as a primitive type.- Returns:
- the previous element in the iteration.
- See Also:
ListIterator.previous()
-
previous
@Deprecated default java.lang.Character previous()
Deprecated.Please use the corresponding type-specific method instead.Returns the previous element from the collection.- Specified by:
previousin interfaceBidirectionalIterator<java.lang.Character>- 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()forntimes (possibly stopping ifBidirectionalIterator.hasPrevious()becomes false).- Specified by:
backin interfaceObjectBidirectionalIterator<java.lang.Character>- 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
CharIterator.next()forntimes (possibly stopping ifIterator.hasNext()becomes false).- Specified by:
skipin interfaceCharIterator- Specified by:
skipin interfaceObjectBidirectionalIterator<java.lang.Character>- Specified by:
skipin interfaceObjectIterator<java.lang.Character>- Parameters:
n- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
Iterator.next()
-
-