Module QCheck2.Tuple
Utils on combining function arguments.
type 'a t
=
|
Nil : unit t
|
Cons : 'a * 'b t -> ('a * 'b) t
Heterogeneous tuple, used to pass any number of arguments to a function.
type 'a obs
How to observe a
t
.See
Observable
for 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.t
observable obs
returns the underlying observable ofobs
.