package colibri2

  1. Overview
  2. Docs
type formatter = Stdlib.Format.formatter
type 'a pp = formatter -> 'a -> unit
val option : 'a pp -> 'a option pp
val option_or_default : string -> 'a pp -> 'a option pp
val list : unit pp -> 'a pp -> 'a list pp
val list_or_default : string -> unit pp -> 'a pp -> 'a list pp
val list_par : (formatter -> unit -> unit) -> 'b pp -> 'b list pp
val list_delim : start:unit pp -> stop:unit pp -> sep:unit pp -> 'b pp -> 'b list pp
val pair_delim : unit pp -> unit pp -> unit pp -> 'a pp -> 'b pp -> ('a * 'b) pp
val pair : 'a pp -> 'b pp -> ('a * 'b) pp
val iter1 : (('a -> unit) -> 'b -> unit) -> unit pp -> 'a pp -> 'b pp
val iter2 : (('a -> 'b -> unit) -> 'c -> unit) -> unit pp -> unit pp -> 'a pp -> 'b pp -> 'c pp

iter2 iter sep1 sep2 print1 print2 fmt t iter iterator on t : 'c print1 k sep2 () print2 v sep1 () print1 sep2 () ...

val iteri2 : (('a -> 'b -> unit) -> 'c -> unit) -> unit pp -> unit pp -> 'a pp -> ('a -> 'b pp) -> 'c pp

iter2 iter sep1 sep2 print1 print2 fmt t iter iterator on t : 'c print1 k sep2 () print2 v sep1 () print1 sep2 () ...

val iter22 : (('a -> 'b -> unit) -> 'c -> unit) -> unit pp -> (formatter -> 'a -> 'b -> unit) -> 'c pp

iter22 iter sep pp fmt t iter iterator on t : 'c pp k v sep () pp k v sep () ...

type formatted = (unit, unit, unit, unit, unit, unit) Stdlib.format6

formatted: string which is formatted "@ " allow to cut the line if too long

val empty_formatted : formatted
val space : unit pp
val alt : unit pp
val alt2 : unit pp
val newline : unit pp
val newline2 : unit pp
val dot : unit pp
val comma : unit pp
val star : unit pp
val simple_comma : unit pp
val semi : unit pp
val colon : unit pp
val underscore : unit pp
val equal : unit pp
val arrow : unit pp
val lbrace : unit pp
val rbrace : unit pp
val lsquare : unit pp
val rsquare : unit pp
val lparen : unit pp
val rparen : unit pp
val lchevron : unit pp
val rchevron : unit pp
val nothing : 'a pp
val string : string pp
val float : float pp
val int : int pp
val bool : bool pp
val char : char pp
val unit : unit pp
val constant_string : string -> unit pp
val formatted : formatted pp
val constant_formatted : formatted -> unit pp
val print0 : unit pp
val hov : int -> 'a pp -> 'a pp
val indent : int -> 'a pp -> 'a pp

add the indentation at the first line

val add_flush : 'a pp -> 'a pp

add the indentation at the first line

val asd : 'a pp -> 'a pp

add string delimiter " "

val open_formatter : ?margin:int -> Stdlib.out_channel -> formatter
val close_formatter : formatter -> unit
val open_file_and_formatter : ?margin:int -> string -> Stdlib.out_channel * formatter
val close_file_and_formatter : (Stdlib.out_channel * formatter) -> unit
val in_file_no_close : ?margin:int -> (formatter -> unit) -> string -> Stdlib.out_channel
val in_file : ?margin:int -> (formatter -> unit) -> string -> unit
val list_opt : unit pp -> (formatter -> 'a -> bool) -> formatter -> 'a list -> bool
val string_of : 'a pp -> 'a -> string
val string_of_wnl : 'a pp -> 'a -> string

same as string_of but without newline

val wnl : formatter -> unit
val sprintf : ('b, formatter, unit, string) Stdlib.format4 -> 'b
val sprintf_wnl : ('b, formatter, unit, string) Stdlib.format4 -> 'b
module Ansi : sig ... end
OCaml

Innovation. Community. Security.