Library
Module
Module type
Parameter
Class
Class type
Pretty-printing combinators that generate valid OCaml syntax for common types along with combinators for user-defined types
type 'a t = bool -> Format.formatter -> 'a -> unit
The type of pretty-printers to valid OCaml syntax. The bool
argument asks the printer to wrap its output inside parentheses if it produces a non-atomic expression.
val to_show : 'a t -> 'a -> string
to_show pp
converts a pretty-printer to a simple 'a -> string
function that generate everything on one line. If the environment variable MCTUTILS_TRUNCATE
is set to a length, it will truncate the resulting string if it exceeds that length.
val of_show : ('a -> string) -> 'a t
of_show show
uses a simple 'a -> string
function as a pretty-printer. Unfortunately, it will wrap the resulting string with parentheses in more cases than strictly necessary.
val cst0 : string -> Format.formatter -> unit
cst0 name fmt
pretty-prints a constructor name
with no argument.
val cst1 : 'a t -> string -> bool -> Format.formatter -> 'a -> unit
cst1 pp name par v fmt
pretty-prints a constructor name
with one parameter, using pp
to pretty-print its argument v
, wrapping itself into parentheses when par
.
val cst2 :
'a t ->
'b t ->
string ->
bool ->
Format.formatter ->
'a ->
'b ->
unit
cst2 pp1 pp2 name par v1 v2 fmt
pretty-prints a constructor name
with two parameters, using pp
i to pretty-print its argument v
i, wrapping itself into parentheses when par
.
val cst3 :
'a t ->
'b t ->
'c t ->
string ->
bool ->
Format.formatter ->
'a ->
'b ->
'c ->
unit
cst3 pp1 pp2 pp3 name par v1 v2 v3 fmt
pretty-prints a constructor name
with three parameters, using pp
i to pretty-print its argument v
i, wrapping itself into parentheses when par
.
val pp_exn : exn t
Pretty-printer for exceptions reusing the standard Printexc.to_string
. The exception message will be wrapped conservatively (ie too often) in parentheses.
val pp_unit : unit t
Pretty-printer for type unit
val pp_bool : bool t
Pretty-printer for type bool
val pp_int : int t
Pretty-printer for type int
val pp_int32 : int32 t
Pretty-printer for type int32
val pp_int64 : int64 t
Pretty-printer for type int64
val pp_float : float t
Pretty-printer for type float
val pp_char : char t
Pretty-printer for type char
val pp_string : string t
Pretty-printer for type string
val pp_bytes : bytes t
Pretty-printer for type bytes
pp_option pp
pretty-prints a value of type 'a option
using pp
to pretty-print values of type 'a
.
pp_result pp_ok pp_error
pretty-prints a value of type ('o, 'e) result
using pp_ok
to pretty-print values of type 'o
and pp_error
for values of type 'e
.
val pp_tuple_item : 'a t -> 'a -> pp_tuple_item
pp_tuple_item pp v
builds a pretty-printer for a tuple item using pp
to pretty-print its value v
.
val pp_tuple : pp_tuple_item list t
pp_tuple
pretty-prints a tuple taken as a list of pp_tuple_item
s.
pp_pair pp_a pp_b
pretty-prints a value of type 'a * 'b
using pp_a
to pretty-print values of type 'a
and pp_b
for values of type 'b
.
pp_tuple4
pretty-prints tuples of 4 elements.
pp_tuple5
pretty-prints tuples of 5 elements.
pp_tuple6
pretty-prints tuples of 6 elements.
val pp_tuple7 :
'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
('a * 'b * 'c * 'd * 'e * 'f * 'g) t
pp_tuple7
pretty-prints tuples of 7 elements.
val pp_tuple8 :
'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
'h t ->
('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h) t
pp_tuple8
pretty-prints tuples of 8 elements.
val pp_tuple9 :
'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) t
pp_tuple9
pretty-prints tuples of 9 elements.
val pp_tuple10 :
'a t ->
'b t ->
'c t ->
'd t ->
'e t ->
'f t ->
'g t ->
'h t ->
'i t ->
'j t ->
('a * 'b * 'c * 'd * 'e * 'f * 'g * 'h * 'i * 'j) t
pp_tuple10
pretty-prints tuples of 10 elements.
pp_list pp
pretty-prints a list using pp
to pretty-print its elements.
pp_seq pp
pretty-prints a sequence using pp
to pretty-print its elements.
pp_array pp
pretty-prints an array using pp
to pretty-print its elements.
pp_field name pp v
builds a pretty-printer for a record field of given name
using pp
to pretty-print its content value v
.