json-stream icon indicating copy to clipboard operation
json-stream copied to clipboard

Incremental applicative JSON Haskell parser

Results 2 json-stream issues
Sort by recently updated
recently updated
newest added

As a generalization or similar case of #22, I have cases where it would be nice to avoid (or delay) parsing of numeric data, with something like `byteStringNumber :: Parser...

I have a simple parser specification like this: ``` haskell postDocuments :: Parser (Text, Aeson.Value) postDocuments = arrayOf element where element = (,) objectWithKey "id" string objectWithKey "document" value ```...