it.unimi.dsi.fastutil.chars
Interface CharIterator

All Superinterfaces:
java.util.Iterator<java.lang.Character>
All Known Subinterfaces:
CharBidirectionalIterator, CharBigListIterator, CharListIterator
All Known Implementing Classes:
AbstractCharBidirectionalIterator, AbstractCharBigListIterator, AbstractCharIterator, AbstractCharListIterator, CharBigListIterators.BigListIteratorListIterator, CharBigListIterators.EmptyBigListIterator, CharBigListIterators.UnmodifiableBigListIterator, CharIterators.EmptyIterator, CharIterators.UnmodifiableBidirectionalIterator, CharIterators.UnmodifiableIterator, CharIterators.UnmodifiableListIterator

public interface CharIterator
extends java.util.Iterator<java.lang.Character>

A type-specific Iterator; provides an additional method to avoid (un)boxing, and the possibility to skip elements.

See Also:
Iterator

Method Summary
 char nextChar()
          Returns the next element as a primitive type.
 int skip(int n)
          Skips the given number of elements.
 
Methods inherited from interface java.util.Iterator
hasNext, next, remove
 

Method Detail

nextChar

char nextChar()
Returns the next element as a primitive type.

Returns:
the next element in the iteration.
See Also:
Iterator.next()

skip

int skip(int n)
Skips the given number of elements.

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

Parameters:
n - the number of elements to skip.
Returns:
the number of elements actually skipped.
See Also:
Iterator.next()