nextDouble

Common
JVM
JS
Native
1.0
open fun nextDouble(): Double
fun nextDouble(): Double

Gets the next random Double value uniformly distributed between 0 (inclusive) and 1 (exclusive).

Common
JVM
JS
Native
1.0
open fun nextDouble(until: Double): Double
fun nextDouble(until: Double): Double

Gets the next random non-negative Double from the random number generator less than the specified until bound.

Generates a Double random value uniformly distributed between 0 (inclusive) and until (exclusive).

Exceptions

IllegalArgumentException - if until is negative or zero.

Common
JVM
JS
Native
1.0
open fun nextDouble(from: Double, until: Double): Double
fun nextDouble(from: Double, until: Double): Double

Gets the next random Double from the random number generator in the specified range.

Generates a Double random value uniformly distributed between the specified from (inclusive) and until (exclusive) bounds.

from and until must be finite otherwise the behavior is unspecified.

Exceptions

IllegalArgumentException - if from is greater than or equal to until.