attoparsec-0.11.3.4: Fast combinator parsing for bytestrings and text

CopyrightBryan O'Sullivan 2011
LicenseBSD3
Maintainerbos@serpentine.com
Stabilityexperimental
Portabilityunknown
Safe HaskellSafe-Inferred
LanguageHaskell98

Data.Attoparsec.Number

Description

A simple number type, useful for parsing both exact and inexact quantities without losing much precision.

Synopsis

Documentation

data Number Source

A numeric type that can represent integers accurately, and floating point numbers to the precision of a Double.

Constructors

I !Integer 
D !Double