Idris2Doc : Text.TOML.Types

Text.TOML.Types

(source)

Reexports

importpublic Data.Time.Time
importpublic Data.SortedMap

Definitions

dataTomlFloat : Type
Totality: total
Visibility: public export
Constructors:
NaN : TomlFloat
Infty : Sign->TomlFloat
Float : Double->TomlFloat

Hints:
EqTomlFloat
InterpolationTomlFloat
ShowTomlFloat
dataTomlValue : Type
  Data type for trees of TOML data.

Totality: total
Visibility: public export
Constructors:
TStr : String->TomlValue
  A string literal
TBool : Bool->TomlValue
  A boolean literal
TTime : AnyTime->TomlValue
  A date-time literal
TInt : Integer->TomlValue
  An integer
TDbl : TomlFloat->TomlValue
  A floating point number
TArr : ListTomlValue->TomlValue
  An array of values
TTbl : SortedMapStringTomlValue->TomlValue
  A table of key-value pairs

Hints:
EqTomlValue
ShowTomlValue
0TomlTable : Type
  Currently, a TOML table is a list of pairs. This might be later
changed to some kind of dictionary.

Totality: total
Visibility: public export
dataKeyType : Type
Totality: total
Visibility: public export
Constructors:
Plain : KeyType
Quoted : KeyType
Literal : KeyType

Hints:
EqKeyType
ShowKeyType
recordKey : Type
Totality: total
Visibility: public export
Constructor: 
KT : String->KeyType->Bounds->Key

Projections:
.bounds : Key->Bounds
.key : Key->String
.tpe : Key->KeyType

Hints:
EqKey
InterpolationKey
Interpolation (ListKey)
ShowKey
.key : Key->String
Totality: total
Visibility: public export
key : Key->String
Totality: total
Visibility: public export
.tpe : Key->KeyType
Totality: total
Visibility: public export
tpe : Key->KeyType
Totality: total
Visibility: public export
.bounds : Key->Bounds
Totality: total
Visibility: public export
bounds : Key->Bounds
Totality: total
Visibility: public export
dataTomlParseError : Type
Totality: total
Visibility: public export
Constructors:
ValueExists : ListKey->TomlParseError
InlineTableExists : ListKey->TomlParseError
TableExists : ListKey->TomlParseError
StaticArray : ListKey->TomlParseError
TableArray : ListKey->TomlParseError
InvalidLeapDay : LocalDate->TomlParseError

Hints:
EqTomlParseError
InterpolationTomlParseError
ShowTomlParseError
0TErr : Type
  Error type when lexing and parsing TOML files

Totality: total
Visibility: public export