jordan-0.2.0.0: JSON with Structure
Safe HaskellNone
LanguageHaskell2010

Jordan.FromJSON.Internal.Attoparsec

Synopsis

Documentation

parseJunkText :: Parser () Source #

A parser for a JSON text value that skips its input. Avoids doing UTF-8 Decoding.

innerText :: Parser Text Source #

Parses the bit of a JSON string after the quotation.

data SP Source #

Constructors

SP !Integer !Int 

scientific :: Parser Scientific Source #

Parse a JSON number.

This function is wholesale copy/pasted from Aeson. Thanks to them.