UShortIterator

abstract class UShortIterator : Iterator<UShort>

An iterator over a sequence of values of type UShort.

Since Kotlin

1.3

Constructors

UShortIterator
Link copied to clipboard
fun UShortIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean
next
Link copied to clipboard
operator override fun next(): UShort
nextUShort
Link copied to clipboard
abstract fun nextUShort(): UShort

Returns the next value in the sequence without boxing.