module Print:sig..end
Printing functions and helpers, used to print generated values on test failures.
type'at ='a -> string
Printer for values of type 'a.
val unit : unit tunit is a printer of unit.
val int : int tint is a printer of integer.
val bool : bool tbool is a printer of boolean.
val float : float tfloat is a printer of float.
val char : char tchar is a printer of character.
val bytes : bytes tbytes is a printer of bytes.
val string : string tstring is a printer of string.
val option : 'a t -> 'a option toption p is a printer of 'a option, using p if it is a Some.
val pair : 'a t -> 'b t -> ('a * 'b) tpair p1 p2 is a printer of pair.
val triple : 'a t ->
'b t -> 'c t -> ('a * 'b * 'c) ttriple p1 p2 p3 is a printer of triple.
val quad : 'a t ->
'b t ->
'c t ->
'd t -> ('a * 'b * 'c * 'd) tquad p1 p2 p3 p4 is a printer of quadruple.
val list : 'a t -> 'a list tlist p is a printer of list, using p for each element.
val array : 'a t -> 'a array tarray p is a printer of array, using p for each element.
val contramap : ('b -> 'a) -> 'a t -> 'b tcontramap f p transforms printer p into another using f.
Note the reverse order of types in f which may be
conter-intuitive: indeed a function that prints values of type
'b can be obtained by transforming a value of type 'b to
'a using f, and then by printing this value of type 'a using p.
val comap : ('b -> 'a) -> 'a t -> 'b tQCheck2.Print.contramap instead.val tup2 : 'a t -> 'b t -> ('a * 'b) t2-tuple printer. Expects printers for each component.
val tup3 : 'a t ->
'b t -> 'c t -> ('a * 'b * 'c) t3-tuple printer. Expects printers for each component.
val tup4 : 'a t ->
'b t ->
'c t ->
'd t -> ('a * 'b * 'c * 'd) t4-tuple printer. Expects printers for each component.
val tup5 : 'a t ->
'b t ->
'c t ->
'd t ->
'e t -> ('a * 'b * 'c * 'd * 'e) t5-tuple printer. Expects printers for each component.
val tup6 : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t -> ('a * 'b * 'c * 'd * 'e * 'f) t6-tuple printer. Expects printers for each component.
val tup7 : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t -> ('a * 'b * 'c * 'd * 'e * 'f * 'g) t7-tuple printer. Expects printers for each component.
val tup8 : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
'h t -> ('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h) t8-tuple printer. Expects printers for each component.
val tup9 : 'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
'h t ->
'i t ->
('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i) t9-tuple printer. Expects printers for each component.