attoparsec-data-0.1.1.2: Parsers for the standard Haskell data types

Safe HaskellNone
LanguageHaskell2010

Attoparsec.Data.Implicit

Synopsis

Documentation

class LenientParser a where Source #

Provides the default lenient parser for a type.

By convention, the parser should not check for the end of input.

Minimal complete definition

lenientParser

Instances

LenientParser Bool Source # 
LenientParser Char Source # 
LenientParser Double Source # 
LenientParser Int Source # 
LenientParser Int8 Source # 
LenientParser Int16 Source # 
LenientParser Int32 Source # 
LenientParser Int64 Source # 
LenientParser Integer Source # 
LenientParser Word Source # 
LenientParser Word8 Source # 
LenientParser Word16 Source # 
LenientParser Word32 Source # 
LenientParser Word64 Source # 
LenientParser ByteString Source #

Consumes all the remaining input, encoding it using UTF8.

LenientParser Text Source #

Consumes all the remaining input.

LenientParser Day Source # 
LenientParser UTCTime Source # 
LenientParser TimeZone Source # 
LenientParser TimeOfDay Source # 
LenientParser Scientific Source #