package toml

  1. Overview
  2. Docs
val maybe_escape_char : Stdlib.Format.formatter -> char -> unit
val print_bool : Stdlib.Format.formatter -> bool -> unit
val print_int : Stdlib.Format.formatter -> int -> unit
val print_float : Stdlib.Format.formatter -> float -> unit
val print_string : Stdlib.Format.formatter -> string -> unit
val print_date : Stdlib.Format.formatter -> float -> unit
val pp_print_list : pp_sep:('a -> unit -> 'b) -> ('c -> 'd -> unit) -> 'e -> 'f list -> unit
val is_table : 'a -> TomlTypes.value -> bool
val is_array_of_table : 'a -> TomlTypes.value -> bool
val print_array : Stdlib.Format.formatter -> TomlTypes.array -> TomlTypes.Table.key list -> unit
val print_table : Stdlib.Format.formatter -> TomlTypes.value TomlTypes.Table.t -> TomlTypes.Table.key list -> unit
val print_value : Stdlib.Format.formatter -> TomlTypes.value -> TomlTypes.Table.key list -> unit
val print_value_with_key : Stdlib.Format.formatter -> TomlTypes.Table.key -> TomlTypes.value -> TomlTypes.Table.key list -> unit
val value : Stdlib.Format.formatter -> TomlTypes.value -> unit
val array : Stdlib.Format.formatter -> TomlTypes.array -> unit
val table : Stdlib.Format.formatter -> TomlTypes.value TomlTypes.Table.t -> unit
val mk_printer : (Stdlib.Format.formatter -> 'a -> 'b) -> 'c -> string
val string_of_table : TomlTypes.value TomlTypes.Table.t -> string
val string_of_value : TomlTypes.value -> string
val string_of_array : TomlTypes.array -> string