package toml

  1. Overview
  2. Docs
On This Page
  1. Toml tables
Library for TOML with a parser, a serializer and a printer

Install

dune-project
 Dependency

Authors

Maintainers

Sources

7.1.0.tar.gz
sha256=1d4e9c16ed9e24d46dd757ce94adc7fc8b2068eb5ff7cd2a70fce08135a752ef
sha512=9cb98e4a9c4a01acf5ceeac836fe0dc4d341662f9b3ce6803e9d14499bcb450441111247159bdbc5c25d4618b8c1f088d206da702bef12ea1ca8781607d26774

doc/toml/Toml/Types/index.html

Module Toml.TypesSource

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