OfInt

interface OfInt : PrimitiveIterator<Int, (Int) -> Unit>

An Iterator specialized for int values.

Since

1.8

Inheritors

Functions

Link copied to clipboard
open override fun forEachRemaining(action: (Int) -> Unit)

{@inheritDoc}

Link copied to clipboard
expect abstract operator fun hasNext(): Boolean
Link copied to clipboard
open operator override fun next(): Int

{@inheritDoc}

Link copied to clipboard
abstract fun nextInt(): Int

Returns the next int element in the iteration.

Link copied to clipboard
expect abstract fun remove()