Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Page
Library
Module
Module type
Parameter
Class
Class type
Source
Base.TomlImplementationSourcetype t = | TomlString of string| TomlInteger of toml_integer| TomlFloat of toml_float| TomlBoolean of bool| TomlOffsetDateTime of toml_date| TomlLocalDateTime of toml_date| TomlLocalDate of toml_date| TomlLocalTime of toml_date| TomlArray of t list| TomlTable of (string * t) list| TomlInlineTable of (string * t) list| TomlTableArray of t listmodule Printer : sig ... endmodule Parser : sig ... endConstructors
val string : string -> tval integer : toml_integer -> tval float : toml_float -> tval boolean : bool -> tAccessors
In non-strict mode, forces a value x to a single-item array [x]
val get_string : ?strict:bool -> t -> stringval get_integer : ?strict:bool -> t -> toml_integerval get_float : ?strict:bool -> t -> toml_floatval get_boolean : ?strict:bool -> t -> boolHigh-level interface
val list_table_keys : t -> string list