OfDouble

An Iterator specialized for double values.

Since

1.8

Functions

Link copied to clipboard
abstract fun forEachRemaining(action: (Double) -> Unit)

Performs the given action for each remaining element until all elements have been processed or the action throws an exception. Actions are performed in the order of iteration, if that order is specified. Exceptions thrown by the action are relayed to the caller.

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

{@inheritDoc}

Link copied to clipboard
abstract fun nextDouble(): Double

Returns the next double element in the iteration.

Link copied to clipboard
expect abstract fun remove()