W3cubDocs

/Kotlin

nextULong

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
@ExperimentalUnsignedTypes fun Random.nextULong(): ULong

Gets the next random ULong from the random number generator.

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

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
@ExperimentalUnsignedTypes fun Random.nextULong(
    until: ULong
): ULong

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

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

Exceptions

IllegalArgumentException - if until is zero.

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
@ExperimentalUnsignedTypes fun Random.nextULong(
    from: ULong, 
    until: ULong
): ULong

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

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

Exceptions

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

Platform and version requirements: JVM (1.3), JS (1.3), Native (1.3)
@ExperimentalUnsignedTypes fun Random.nextULong(
    range: ULongRange
): ULong

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

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

Exceptions

IllegalArgumentException - if range is empty.

© 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/next-u-long.html