tomland-0.4.0: Bidirectional TOML parser

Safe HaskellNone
LanguageHaskell2010

Toml.Parser

Description

Parser of TOML language. Implemented with the help of megaparsec package.

Synopsis

Documentation

newtype ParseException Source #

Pretty parse exception for parsing toml.

Constructors

ParseException Text 

arrayP :: Parser [UValue] Source #

boolP :: Parser Bool Source #

keyP :: Parser Key Source #

keyValP :: Parser (Key, AnyValue) Source #

textP :: Parser Text Source #

tomlP :: Parser TOML Source #