Package it.unimi.dsi.fastutil.chars
Interface CharBigListIterator
- All Superinterfaces:
BidirectionalIterator<Character>
,BigListIterator<Character>
,CharBidirectionalIterator
,CharIterator
,Iterator<Character>
,ObjectBidirectionalIterator<Character>
,ObjectIterator<Character>
,PrimitiveIterator<Character,
CharConsumer>
- All Known Implementing Classes:
AbstractCharBigListIterator
,CharBigListIterators.AbstractIndexBasedBigListIterator
,CharBigListIterators.BigListIteratorListIterator
,CharBigListIterators.EmptyBigListIterator
,CharBigListIterators.UnmodifiableBigListIterator
A type-specific
BigListIterator
.- 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 void
add
(char k) Inserts the specified element into the list (optional operation).default void
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
(char k) Replaces the last element returned bynext()
orprevious()
with the specified element (optional operation).default void
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.chars.CharBidirectionalIterator
back, previous, previousChar
Methods inherited from interface it.unimi.dsi.fastutil.chars.CharIterator
forEachRemaining, forEachRemaining, forEachRemaining, next, nextChar
-
Method Details
-
set
default void set(char k) Replaces the last element returned bynext()
orprevious()
with the specified element (optional operation).- See Also:
-
add
default void add(char k) Inserts the specified element into the list (optional operation).- See Also:
-
set
Deprecated.Please use the corresponding type-specific method instead.Replaces the last element returned byCharIterator.next()
orCharBidirectionalIterator.previous()
with the specified element (optional operation).- Specified by:
set
in interfaceBigListIterator<Character>
- Parameters:
k
- an element.- See Also:
-
add
Deprecated.Please use the corresponding type-specific method instead.Inserts the specified element into the list (optional operation).- Specified by:
add
in interfaceBigListIterator<Character>
- Parameters:
k
- an element.- See Also:
-
skip
default long skip(long n) Skips the given number of elements.The effect of this call is exactly the same as that of calling
next()
forn
times (possibly stopping ifIterator.hasNext()
becomes false).- Parameters:
n
- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-
back
default long back(long 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).- 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
CharIterator.next()
forn
times (possibly stopping ifIterator.hasNext()
becomes false).- Specified by:
skip
in interfaceCharBidirectionalIterator
- Specified by:
skip
in interfaceCharIterator
- Specified by:
skip
in interfaceObjectBidirectionalIterator<Character>
- Specified by:
skip
in interfaceObjectIterator<Character>
- Parameters:
n
- the number of elements to skip.- Returns:
- the number of elements actually skipped.
- See Also:
-