Creates a new XoshiroRNG instance.
Optionalseed: number | number[]The seed to use for initializing the RNG. If not provided, a random seed will be generated.
Clones the RNG instance.
A new XoshiroRNG instance with the same state as the current instance.
Jumps the RNG sequence
Long jumps the RNG sequence
Generates the next random number in the sequence.
The next random number in the sequence.
Generates the next random double in the sequence.
The next random double in the sequence.
A class for generating random numbers using the Xoshiro256** algorithm.