X-Git-Url: http://git.nguyen.vg/gitweb/?a=blobdiff_plain;f=src%2Fpretty.mli;h=cbdf1962b1e6e0e3616ea78ed172f8eaa19d04d4;hb=3406b26f1ea26a997d7f194c547439891c108ce6;hp=cb1b8709f95c6e95dc9edf737819dcf93e33b1f5;hpb=cba2938d929fd5119b1491686ddc224d5af618c6;p=tatoo.git diff --git a/src/pretty.mli b/src/pretty.mli index cb1b870..cbdf196 100644 --- a/src/pretty.mli +++ b/src/pretty.mli @@ -22,6 +22,8 @@ val up_arrow : string val right_arrow : string val left_arrow : string val epsilon : string +val bullet : string +val big_sigma : string val cap : string val cup : string val lnot : string @@ -30,6 +32,7 @@ val vee : string val top : string val bottom : string val dummy : string +val inverse : string val double_right_arrow : string val overline : string -> string val underline : string -> string @@ -44,8 +47,24 @@ val pp_subscript : Format.formatter -> int -> unit val pp_superscript : Format.formatter -> int -> unit val pp_print_list : - ?sep:(Format.formatter -> unit -> unit) -> (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a list -> unit + ?sep:(Format.formatter -> unit -> unit) -> (Format.formatter -> 'a -> unit) + -> Format.formatter -> 'a list -> unit + val pp_print_array : - ?sep:(Format.formatter -> unit -> unit) -> (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a array -> unit -val print_list : ?sep:string -> (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a list -> unit -val print_array : ?sep:string -> (Format.formatter -> 'a -> unit) -> Format.formatter -> 'a array -> unit + ?sep:(Format.formatter -> unit -> unit) -> (Format.formatter -> 'a -> unit) + -> Format.formatter -> 'a array -> unit + +val pp_print_range : + ?sep:(Format.formatter -> unit -> unit) -> (Format.formatter -> int -> unit) + -> Format.formatter -> (int * int) -> unit + + +val print_list : ?sep:string -> (Format.formatter -> 'a -> unit) + -> Format.formatter -> 'a list -> unit + +val print_array : ?sep:string -> (Format.formatter -> 'a -> unit) + -> Format.formatter -> 'a array -> unit + +val print_range : + ?sep:string -> (Format.formatter -> int -> unit) + -> Format.formatter -> (int * int) -> unit