Cabal-1.22.4.0: A framework for packaging Haskell software

CopyrightJose Iborra 2008
LicenseBSD3
Maintainercabal-devel@haskell.org
Portabilityportable
Safe HaskellSafe
LanguageHaskell98

Distribution.ReadE

Contents

Description

Simple parsing with failure

Synopsis

ReadE

newtype ReadE a Source

Parser with simple error reporting

Constructors

ReadE 

Fields

runReadE :: String -> Either ErrorMsg a
 

Instances

failReadE :: ErrorMsg -> ReadE a Source

Projections

readP_to_E :: (String -> ErrorMsg) -> ReadP a a -> ReadE a Source