Module Abbreviations.Gen

module Gen: sig .. end
Shorthand for Generator module.

type random = Generator.random 
type 'a t = 'a Generator.t 
type 'a outcome = 'a Generator.outcome = 
| Value of 'a
| Exception of exn
include Generator