tomland-1.0.0: Bidirectional TOML serialization
Toml.Parser.Value
Description
Parser for UValue.
UValue
arrayP :: Parser [UValue] Source #
Parser for array of values. This parser tries to parse first element of array, pattern-matches on this element and uses parser according to this first element. This allows to prevent parsing of heterogeneous arrays.
boolP :: Parser Bool Source #
Parser for Bool value.
Bool
dateTimeP :: Parser UValue Source #
Parser for datetime values.
doubleP :: Parser Double Source #
Parser for Double value.
Double
integerP :: Parser Integer Source #
Parser for Integer value.
Integer
valueP :: Parser UValue Source #
anyValueP :: Parser AnyValue Source #
Uses valueP and typechecks it.
valueP