CharIterator
An iterator over a sequence of values of type Char
.
This is a substitute for Iterator<Char>
that provides a specialized version of next(): T
method: nextChar(): Char
and has a special handling by the compiler to avoid platform-specific boxing conversions as a performance optimization.
In the following example:
class CharContainer(private val data: CharArray) {
// CharIterator instead of Iterator<Char> in the signature
operator fun iterator(): CharIterator = object : CharIterator() {
private var idx = 0
override fun nextChar(): Char {
if (!hasNext()) throw NoSuchElementException()
return data[idx++]
}
override fun hasNext(): Boolean = idx < data.size
}
}
for (element in CharContainer(charArrayOf('1', '2', '3'))) {
... handle element ...
}
Content copied to clipboard
No boxing conversion is performed during the for-loop iteration. Note that the iterator itself will still be allocated.
Since Kotlin
1.0Functions
Link copied to clipboard
Link copied to clipboard
Returns an Iterator that wraps each element produced by the original iterator into an IndexedValue containing the index of that element and the element itself.
Since Kotlin 1.0