UByteIterator

abstract class UByteIterator : Iterator<UByte>

An iterator over a sequence of values of type UByte.

Since Kotlin

1.3

Constructors

UByteIterator
Link copied to clipboard
fun UByteIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): UByte
nextUByte
Link copied to clipboard
abstract fun nextUByte(): UByte

Returns the next value in the sequence without boxing.