Module QCheck2.Tuple
Utils on combining function arguments.
type 'a t=|Nil : unit t|Cons : 'a * 'b t -> ('a * 'b) tHeterogeneous tuple, used to pass any number of arguments to a function.
type 'a obsHow to observe a
t.See
Observablefor more information on what "observe" means in the QCheck.
val o_cons : 'a Observable.t -> 'b obs -> ('a * 'b) obs
val observable : 'a obs -> 'a t Observable.tobservable obsreturns the underlying observable ofobs.