Module Toml.Value.Of

module Of: sig .. end


From OCaml primitive to Toml type.

OCaml strings should be valid UTF-8, and OCaml dates should be in UTC.

val bool : bool -> Toml.Value.value
val int : int -> Toml.Value.value
val float : float -> Toml.Value.value
val string : string -> Toml.Value.value
val date : Unix.tm -> Toml.Value.value
val array : Toml.Value.array -> Toml.Value.value
val table : Toml.Value.table -> Toml.Value.value
module Array: sig .. end