Module Pp
Coq document type.
Pretty printing guidelines
Pp.t
is the main pretty printing document type in the Coq system. Documents are composed laying out boxes, and users can add arbitrary tag metadata that backends are free to interpret.
The datatype has a public view to allow serialization or advanced uses, however regular users are _strongly_ warned against its use, they should instead rely on the available functions below.
Box order and number is indeed an important factor. Try to create a proper amount of boxes. The ++
operator provides "efficient" concatenation, but using the list constructors is usually preferred.
That is to say, this:
hov [str "Term"; hov (pr_term t); str "is defined"]
is preferred to:
hov (str "Term" ++ hov (pr_term t) ++ str "is defined")
type pp_tag
= string
type t
type block_type
=
|
Pp_hbox
|
Pp_vbox of int
|
Pp_hvbox of int
|
Pp_hovbox of int
type doc_view
=
|
Ppcmd_empty
|
Ppcmd_string of string
|
Ppcmd_glue of t list
|
Ppcmd_box of block_type * t
|
Ppcmd_tag of pp_tag * t
|
Ppcmd_print_break of int * int
|
Ppcmd_force_newline
|
Ppcmd_comment of string list
Formatting commands
Manipulation commands
Derived commands
Boxing commands
Tagging
Printing combinators
val pr_comma : unit -> t
Well-spaced comma.
val pr_semicolon : unit -> t
Well-spaced semicolon.
val pr_bar : unit -> t
Well-spaced pipe bar.
val pr_spcbar : unit -> t
Pipe bar with space before and after.
val pr_opt : ('a -> t) -> 'a option -> t
Inner object preceded with a space if
Some
, nothing otherwise.
val pr_nth : int -> t
Ordinal number with the correct suffix (i.e. "st", "nd", "th", etc.).
val prlist : ('a -> t) -> 'a list -> t
Concatenation of the list contents, without any separator.
Unlike all other functions below,
prlist
works lazily. If a strict behavior is needed, useprlist_strict
instead.
val prlist_with_sep : (unit -> t) -> ('a -> t) -> 'a list -> t
prlist_with_sep sep pr [a ; ... ; c]
outputspr a ++ sep () ++ ... ++ sep () ++ pr c
. where the thunk sep is memoized, rather than being called each place its result is used.
val prvecti_with_sep : (unit -> t) -> (int -> 'a -> t) -> 'a array -> t
Indexed version of
prvect_with_sep
.
val pr_enum : ('a -> t) -> 'a list -> t
pr_enum pr [a ; b ; ... ; c]
outputspr a ++ str "," ++ spc () ++ pr b ++ str "," ++ spc () ++ ... ++ str "and" ++ spc () ++ pr c
.
val pr_choice : ('a -> t) -> 'a list -> t
pr_choice pr [a ; b ; ... ; c]
outputspr a ++ str "," ++ spc () ++ pr b ++ str "," ++ spc () ++ ... ++ str "or" ++ spc () ++ pr c
.
Main renderers, to formatter and to string
val pp_with : Stdlib.Format.formatter -> t -> unit
pp_with fmt pp
Printpp
tofmt
and don't flushfmt
val string_of_ppcmds : t -> string
val start_pfx : string
Tag prefix to start a multi-token diff span
val db_print_pp : Stdlib.Format.formatter -> t -> unit
Print the Pp in tree form for debugging
val db_string_of_pp : t -> string
Print the Pp in tree form for debugging, return as a string