nextUInt

Common
JVM
JS
Native
1.5
fun Random.nextUInt(): UInt
(source)

Gets the next random UInt from the random number generator.

Generates a UInt random value uniformly distributed between UInt.MIN_VALUE and UInt.MAX_VALUE (inclusive).

Common
JVM
JS
Native
1.5
fun Random.nextUInt(until: UInt): UInt
(source)

Gets the next random UInt from the random number generator less than the specified until bound.

Generates a UInt random value uniformly distributed between 0 (inclusive) and the specified until bound (exclusive).

Exceptions

IllegalArgumentException - if until is zero.

Common
JVM
JS
Native
1.5
fun Random.nextUInt(from: UInt, until: UInt): UInt
(source)

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

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

Exceptions

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

Common
JVM
JS
Native
1.5
fun Random.nextUInt(range: UIntRange): UInt
(source)

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

Generates a UInt random value uniformly distributed in the specified range: from range.start inclusive to range.endInclusive inclusive.

Exceptions

IllegalArgumentException - if range is empty.