toml
Toml
module Parser : sig ... end
Parses raw data into Toml data structures
module Compare : sig ... end
module Printer : sig ... end
val key : string -> TomlTypes.Table.Key.t
Turns a string into a table key.
TomlTypes.Table.Key.Bad_key
if the key contains invalid characters.
val of_key_values : (TomlTypes.Table.Key.t * TomlTypes.value) list -> TomlTypes.table
Builds a Toml table out of a list of (key, value) tuples.