Std.Random
The Std.Random namespace contains the following functions and operations:
Name | Description |
---|---|
DrawRandomBool | Given a success probability, returns a single Bernoulli trial that is true with the given probability. |
DrawRandomDouble | Draws a random real number from a uniform distribution in a given inclusive interval. Fails if max < min . |
DrawRandomInt | Draws a random integer from a uniform distribution in a given inclusive range. Fails if max < min . |