aeson-0.3.2.11: Fast JSON parsing and encoding

Portabilityportable
Stabilityexperimental
MaintainerBryan O'Sullivan <bos@mailrank.com>

Data.Aeson.Parser

Description

Efficiently and correctly parse a JSON string. The string must be encoded as UTF-8.

Synopsis

Documentation

json :: Parser ValueSource

Parse a top-level JSON value. This must be either an object or an array.

value :: Parser ValueSource

Parse any JSON value. Use json in preference to this function if you are parsing data from an untrusted source.