attoparsec-0.11.1.0: Fast combinator parsing for bytestrings and text

Portabilityunknown
Stabilityexperimental
Maintainer[email protected]
Safe HaskellSafe-Inferred

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