Seeded random number generator to get reproducible sequences of values.
Constructor
Variables
Methods
shuffle<T>(arr:Array<T>):Void
Shuffle an Array. This operation affects the array in place.
The shuffle algorithm used is a variation of the Fisher Yates Shuffle. Adapted to use seeded random instead
of built-in Math.random()