ULongIterator

abstract class ULongIterator : Iterator<ULong>

An iterator over a sequence of values of type ULong.

Since Kotlin

1.3

Constructors

ULongIterator
Link copied to clipboard
fun ULongIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): ULong
nextULong
Link copied to clipboard
abstract fun nextULong(): ULong

Returns the next value in the sequence without boxing.