Results for “Std.Toml.Toml”
24 matching declarations
Use module:Std.List, kind:fn, or is:exact. Put a Pudu type after ::.
- Std.Toml.Toml
A configuration value.
- Std.Toml.Read.read
Str -> Result[Std.Toml.Toml, Std.Toml.TomlError]A configuration read from text.
- Std.Toml.Read.readValue
Str -> Int -> Result[(Std.Toml.Toml, Int), Std.Toml.TomlError]A value, and where it ended.
- Std.Toml.Scan.readEscape
Str -> Int -> Result[(Str, Int), Std.Toml.TomlError]One escape, and where it ended.
- Std.Toml.Scan.readKey
Str -> Int -> Result[(Str, Int), Std.Toml.TomlError]One key, bare or quoted.
- Std.Toml.Scan.readMultiline
Str -> Int -> Str -> Result[(Str, Int), Std.Toml.TomlError]Text written across lines, and where it ended.
- Std.Toml.Scan.readQuoted
Str -> Int -> Result[(Str, Int), Std.Toml.TomlError]Quoted text, and where it ended.
- Std.Toml.Scan.readScalar
Str -> Int -> Int -> Result[(Str, Int), Std.Toml.TomlError]A scalar written as hexadecimal digits.
- Std.Toml.Scan.valueOf
Str -> Std.Toml.TomlWhat an unquoted word means.
- Std.Toml.asBoolean
&Std.Toml.Toml -> Option[Bool]The truth a value holds, or nothing when it is not one.
- Std.Toml.asFractional
&Std.Toml.Toml -> Option[Str]The fractional number's text, or nothing when the value is not one.
- Std.Toml.asList
&Std.Toml.Toml -> Option[Array[Std.Toml.Toml]]The items a list holds, or nothing when the value is not one.
- Std.Toml.asMoment
&Std.Toml.Toml -> Option[Str]The date or time text a value holds, or nothing when it is not one.
- Std.Toml.asTable
&Std.Toml.Toml -> Option[Array[(Str, Std.Toml.Toml)]]The pairings a table holds, or nothing when the value is not one.
- Std.Toml.asText
&Std.Toml.Toml -> Option[Str]The text a value holds, or nothing when it is not text.
- Std.Toml.asWhole
&Std.Toml.Toml -> Option[Int]The whole number a value holds, or nothing when it is not one.
- Std.Toml.at
&Std.Toml.Toml -> Int -> Option[Std.Toml.Toml]The value at a position of a list, or nothing when there is none.
- Std.Toml.encode
&Std.Toml.Toml -> StrA document written as text.
- Std.Toml.field
&Std.Toml.Toml -> Str -> Option[Std.Toml.Toml]The value under a key of a table, or nothing when there is none.
- Std.Toml.keys
&Std.Toml.Toml -> Array[Str]The keys a table holds, in the order they were read.
- Std.Toml.path
&Std.Toml.Toml -> Str -> Option[Std.Toml.Toml]The value a dotted path names, walking tables one key at a time.
- Std.Toml.renderValue
&Std.Toml.Toml -> StrA value written the way it appears to the right of a key.
- Std.Toml.table
Std.Toml.TomlA table holding nothing.
- Std.Toml.withField
&Std.Toml.Toml -> Str -> Std.Toml.Toml -> Std.Toml.TomlA table with a pairing added, replacing any already under the key.
