Idris2Doc : Text.TOML.Parser

Text.TOML.Parser

(source)

Definitions

dataElemType : Type
Totality: total
Visibility: public export
Constructors:
Table : TableType->ElemType
Array : ArrayType->ElemType
0ParentType : ElemType->Type
Totality: total
Visibility: public export
recordPathElem : Type
  Key together with the a value and its type encountered in a
TOML tree.

Totality: total
Visibility: public export
Constructor: 
PE : (tpe : ElemType) ->ParentTypetpe->KeyToken->PathElem

Projections:
.key : PathElem->KeyToken
.parent : ({rec:0} : PathElem) ->ParentType (tpe{rec:0})
.tpe : PathElem->ElemType
.tpe : PathElem->ElemType
Totality: total
Visibility: public export
tpe : PathElem->ElemType
Totality: total
Visibility: public export
.parent : ({rec:0} : PathElem) ->ParentType (tpe{rec:0})
Totality: total
Visibility: public export
parent : ({rec:0} : PathElem) ->ParentType (tpe{rec:0})
Totality: total
Visibility: public export
.key : PathElem->KeyToken
Totality: total
Visibility: public export
key : PathElem->KeyToken
Totality: total
Visibility: public export
recordTOMLView : Type
Totality: total
Visibility: public export
Constructor: 
TV : SnocListPathElem->MaybeTomlValue->TOMLView

Projections:
.cur : TOMLView->MaybeTomlValue
.path : TOMLView->SnocListPathElem
.path : TOMLView->SnocListPathElem
Totality: total
Visibility: public export
path : TOMLView->SnocListPathElem
Totality: total
Visibility: public export
.cur : TOMLView->MaybeTomlValue
Totality: total
Visibility: public export
cur : TOMLView->MaybeTomlValue
Totality: total
Visibility: public export
pth : SnocListPathElem->ListKeyToken->MaybeTomlValue->Either (BoundedTomlErr) TOMLView
Totality: total
Visibility: public export
tableAt : List1KeyToken->TomlValue->Either (BoundedTomlErr) (SnocListPathElem, TomlValue)
Totality: total
Visibility: public export
arrayAt : List1KeyToken->TomlValue->Either (BoundedTomlErr) (SnocListPathElem, SnocListTomlValue)
Totality: total
Visibility: public export
tryInsert : List1KeyToken->TomlValue->TomlValue->Either (BoundedTomlErr) TomlValue
Totality: total
Visibility: public export
dataTomlItem : Type
Totality: total
Visibility: public export
Constructors:
TableName : List1KeyToken->TomlItem
ArrayName : List1KeyToken->TomlItem
KeyVal : List1KeyToken->TomlValue->TomlItem
parse : Origin->String->Either (ParseErrorTomlParseError) TomlValue
Totality: total
Visibility: export