package toml

  1. Overview
  2. Docs
type value

A Toml value. Covers Toml integers, floats, booleans, strings, dates. Also has constructors for tables and arrays.

type array

A Toml array. May contain any Toml data type except for tables.

type table = value Table.t

A Toml table of Toml.Value.value.

module To : sig ... end
module Of : sig ... end

From OCaml primitive to Toml type.