Fmlib_browser.RandomSourceGenerate Random Numbers
Generator, generating random values of type 'a.
rand >>= f Generate the random value a using the generator rand, and then use f a to generate a random value b.
map f rand Use rand to generate a random value and then map it by f.
int bound A random generator which generates numbers n satisfying 0 <= n < bound.
Precondition: 0 < bound
float bound A random generator which generates numbers n satisfying 0.0 <= n <= bound.
Precondition: 0 <= bound