package toml

  1. Overview
  2. Docs
TOML parser.

Install

Dune Dependency

Authors

Maintainers

Sources

v5.0.0.tar.gz
sha256=f36ed18e008905a7fb4da87b589485aef77ad83fb3a470335c5d67891b36d73a
md5=e68d21fdbb6b255909305f8707a54951

doc/toml/TomlTypes/index.html

Module TomlTypesSource

Toml tables

Sourcemodule Table : sig ... end
Sourcetype array =
  1. | NodeEmpty
  2. | NodeBool of bool list
  3. | NodeInt of int list
  4. | NodeFloat of float list
  5. | NodeString of string list
  6. | NodeDate of float list
  7. | NodeArray of array list
  8. | NodeTable of table list
Sourceand value =
  1. | TBool of bool
  2. | TInt of int
  3. | TFloat of float
  4. | TString of string
  5. | TDate of float
  6. | TArray of array
  7. | TTable of table
Sourceand table = value Table.t
OCaml

Innovation. Community. Security.

On This Page
  1. Toml tables