Copyright | 2011-2014 Magnus Therning |
---|---|
License | BSD3 |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Data.Ini.Reader
Description
Parser for configurations.
Synopsis
Documentation
data IniReaderError Source #
Constructors
IniParserError String | |
IniSyntaxError String | |
IniOtherError String |
Instances
Show IniReaderError Source # | |
Defined in Data.Ini.Reader.Internals Methods showsPrec :: Int -> IniReaderError -> ShowS # show :: IniReaderError -> String # showList :: [IniReaderError] -> ShowS # | |
Eq IniReaderError Source # | |
Defined in Data.Ini.Reader.Internals Methods (==) :: IniReaderError -> IniReaderError -> Bool # (/=) :: IniReaderError -> IniReaderError -> Bool # |
type IniParseResult = Either IniReaderError Source #