fun nextDouble(): Double
Gets the next random Double value uniformly distributed between 0 (inclusive) and 1 (exclusive).
fun nextDouble(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.
IllegalArgumentException
- if from is greater than or equal to until.
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.random/-random/-default/next-double.html