package toml

  1. Overview
  2. Docs
val maybe_escape_char : Format.formatter -> char -> unit
val print_bool : Format.formatter -> bool -> unit
val print_int : Format.formatter -> int -> unit
val print_float : Format.formatter -> float -> unit
val print_string : Format.formatter -> string -> unit
val print_date : Format.formatter -> float -> unit
val pp_print_list : pp_sep:('a -> unit -> 'b) -> ('a -> 'c -> unit) -> 'a -> 'c list -> unit
val is_table : 'a -> TomlTypes.value -> bool
val is_array_of_table : 'a -> TomlTypes.value -> bool
val print_array : Format.formatter -> TomlTypes.array -> TomlTypes.Table.Key.t list -> unit
val print_value : Format.formatter -> TomlTypes.value -> TomlTypes.Table.key list -> unit
val print_value_with_key : Format.formatter -> TomlTypes.Table.key -> TomlTypes.value -> TomlTypes.Table.Key.t list -> unit
val value : Format.formatter -> TomlTypes.value -> unit
val array : Format.formatter -> TomlTypes.array -> unit
val mk_printer : (Format.formatter -> 'a -> 'b) -> 'a -> 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