Creates a new RNG instance.
The seed to use. Can be a number or a string.
Returns a random float between min and max, with a bell curve distribution.
The minimum value.
The maximum value.
A random float between min and max.
Returns a random float between min and max.
The minimum value.
The maximum value.
A random float between min and max.
Returns a random integer between min and max (inclusive).
The minimum value.
The maximum value.
A random integer between min and max.
Generates the next random number in the sequence.
A random number between 0 and 1.
Returns a random string of the specified length.
The length of the string.
A random string.
Sets the seed for the random number generator.
The seed to use. Can be a number or a string.
Returns a random integer between 1 and max.
The maximum value.
A random integer between 1 and max.
Returns a random item from a weighted list.
The list of weighted entries.
A random item from the list, selected based on weight.
A seeded random number generator.