| Value | Description |
val float : unit -> float |
Generate a random float in [0, 1) using global thread-safe state
|
val gaussian : unit -> float |
Generate a random float from the Normal (Gaussian) distribution with zero mean and unit variance using global thread-safe state
|
val gaussian32 : unit -> float32 |
Generate a random float from the Normal (Gaussian) distribution with zero mean and unit variance using global thread-safe state
|
val int : unit -> int |
Generate a random signed 32-bit integer using global thread-safe state
|
val int64 : unit -> int64 |
Generate a random signed 64-bit integer using global thread-safe state
|
val uint32 : unit -> uint32 |
Generates a random unsigned 32-bit int using global thread-safe state
|
val uint64 : unit -> uint64 |
Generate a random unsigned 64-bit integer using global thread-safe state
|