Std.Toml
18 public declarations
- asBoolean
&Std.Toml.Toml -> Option[Bool]The truth a value holds, or nothing when it is not one.
- asFractional
&Std.Toml.Toml -> Option[Str]The fractional number's text, or nothing when the value is not one.
- asList
&Std.Toml.Toml -> Option[Array[Std.Toml.Toml]]The items a list holds, or nothing when the value is not one.
- asMoment
&Std.Toml.Toml -> Option[Str]The date or time text a value holds, or nothing when it is not one.
- asTable
&Std.Toml.Toml -> Option[Array[(Str, Std.Toml.Toml)]]The pairings a table holds, or nothing when the value is not one.
- asText
&Std.Toml.Toml -> Option[Str]The text a value holds, or nothing when it is not text.
- asWhole
&Std.Toml.Toml -> Option[Int]The whole number a value holds, or nothing when it is not one.
- at
&Std.Toml.Toml -> Int -> Option[Std.Toml.Toml]The value at a position of a list, or nothing when there is none.
- encode
&Std.Toml.Toml -> StrA document written as text.
- field
&Std.Toml.Toml -> Str -> Option[Std.Toml.Toml]The value under a key of a table, or nothing when there is none.
- keys
&Std.Toml.Toml -> Array[Str]The keys a table holds, in the order they were read.
- path
&Std.Toml.Toml -> Str -> Option[Std.Toml.Toml]The value a dotted path names, walking tables one key at a time.
- renderKey
Str -> StrA key written the way the format writes one.
- renderValue
&Std.Toml.Toml -> StrA value written the way it appears to the right of a key.
- table
Std.Toml.TomlA table holding nothing.
- Toml
A configuration value.
- TomlError
Why text does not name a configuration.
- withField
&Std.Toml.Toml -> Str -> Std.Toml.Toml -> Std.Toml.TomlA table with a pairing added, replacing any already under the key.
