Generator.RandomRandom Number Generators
val lcg : ?width:int -> ?min:int -> ?max:int -> int -> tlcg ~min ~max seed a linear congruential generator, that produces a sequence of pseudorandom values that lies in the range between min and max (all inclusive).
val byte : int -> tbyte seed the same as lcg ~min:0 ~max:255 seed
module Seeded : sig ... endSelf seeded generators.