text-1.1.0.1: An efficient packed Unicode text type.

PortabilityGHC
Stabilityexperimental
Maintainerbos@serpentine.com
Safe HaskellSafe-Inferred

Data.Text.Internal.Read

Description

Common internal functiopns for reading textual data.

Documentation

type IReader t a = t -> Either String (a, t)Source

newtype IParser t a Source

Constructors

P 

Fields

runP :: IReader t a
 

Instances

data T Source

Constructors

T !Integer !Int 

perhaps :: a -> IParser t a -> IParser t aSource