sig   val init : int -> unit   val full_init : int array -> unit   val self_init : unit -> unit   val bits : unit -> int   val int32 : Int32.t -> Int32.t   val nativeint : Nativeint.t -> Nativeint.t   val int64 : Int64.t -> Int64.t   val bool : unit -> bool   module State :     sig       type t       val make : int array -> t       val make_self_init : unit -> t       val copy : t -> t       val bits : t -> int       val int : t -> int -> int       val int32 : t -> Int32.t -> Int32.t       val nativeint : t -> Nativeint.t -> Nativeint.t       val int64 : t -> Int64.t -> Int64.t       val float : t -> float -> float       val bool : t -> bool     end   val get_state : unit -> State.t   val set_state : State.t -> unit   type state = Random.State.t   type 'a t = CCRandom.state -> 'a   type 'a random_gen = 'CCRandom.t   val return : '-> 'CCRandom.t   val flat_map : ('-> 'CCRandom.t) -> 'CCRandom.t -> 'CCRandom.t   val ( >>= ) : 'CCRandom.t -> ('-> 'CCRandom.t) -> 'CCRandom.t   val map : ('-> 'b) -> 'CCRandom.t -> 'CCRandom.t   val ( >|= ) : 'CCRandom.t -> ('-> 'b) -> 'CCRandom.t   val delay : (unit -> 'CCRandom.t) -> 'CCRandom.t   val choose : 'CCRandom.t list -> 'a option CCRandom.t   val choose_exn : 'CCRandom.t list -> 'CCRandom.t   val choose_array : 'CCRandom.t array -> 'a option CCRandom.t   val choose_return : 'a list -> 'CCRandom.t   val replicate : int -> 'CCRandom.t -> 'a list CCRandom.t   val sample_without_replacement :     ?compare:('-> '-> int) -> int -> 'CCRandom.t -> 'a list CCRandom.t   val list_seq : 'CCRandom.t list -> 'a list CCRandom.t   exception Pick_from_empty   val pick_list : 'a list -> 'CCRandom.t   val pick_array : 'a array -> 'CCRandom.t   val small_int : int CCRandom.t   val int : int -> int CCRandom.t   val int_range : int -> int -> int CCRandom.t   val small_float : float CCRandom.t   val float : float -> float CCRandom.t   val float_range : float -> float -> float CCRandom.t   val split : int -> (int * int) option CCRandom.t   val split_list : int -> len:int -> int list option CCRandom.t   val retry : ?max:int -> 'a option CCRandom.t -> 'a option CCRandom.t   val try_successively : 'a option CCRandom.t list -> 'a option CCRandom.t   val ( <?> ) :     'a option CCRandom.t -> 'a option CCRandom.t -> 'a option CCRandom.t   val fix :     ?sub1:('CCRandom.t -> 'CCRandom.t) list ->     ?sub2:('CCRandom.t -> 'CCRandom.t -> 'CCRandom.t) list ->     ?subn:(int CCRandom.t * ('a list CCRandom.t -> 'CCRandom.t)) list ->     base:'CCRandom.t -> int CCRandom.t -> 'CCRandom.t   val pure : '-> 'CCRandom.t   val ( <*> ) : ('-> 'b) CCRandom.t -> 'CCRandom.t -> 'CCRandom.t   val run : ?st:CCRandom.state -> 'CCRandom.t -> 'a   val uniformity_test :     ?size_hint:int -> int -> 'CCRandom.t -> bool CCRandom.t end