RandomGen -package:moffy-samples-events
RandomGen is an interface to pure pseudo-random number
generators.
StdGen is the standard
RandomGen instance provided by
this library.
RandomGen is an interface to pure pseudo-random number
generators.
StdGen is the standard
RandomGen instance provided by
this library.
Alternative
RandomGen class with a modified
next
operation, and added
splitn and
level operations.
Using the generator requires that no more than one operation is called
on the same generator state, as the implementation does not guarantee
pseudorandomness otherwise. As an exception, calling
splitn
many times on the same generator state is allowed as long as the
'bits' argument is the same for all the calls.
A Deterministic Random Generator (DRG) class
Not on Stackage, so not searched.
A fast, SMP parallel random data generator
Generate N bytes of randomness from a DRG
Generate a Word64 from a DRG
Get the initial gen for random generator
Sets the initial gen for random generator
Like
getStdRandom, except use a given 'IORef StdGen' instead of
the global
theStdGen.
Get a random number generator based on the standard system entropy
source