UIntIterator

abstract class UIntIterator : Iterator<UInt>

An iterator over a sequence of values of type UInt.

Since Kotlin

1.3

Constructors

UIntIterator
Link copied to clipboard
fun UIntIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): UInt
nextUInt
Link copied to clipboard
abstract fun nextUInt(): UInt

Returns the next value in the sequence without boxing.