attoparsec-0.10.0.3: Fast combinator parsing for bytestrings

Portabilityunknown
Stabilityexperimental
Maintainerbos@serpentine.com

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