1. json-abnf
    1. Description
    2. Library Procedures
    3. Repository
    4. Requires
    5. Version History
    6. License

json-abnf

Description

The json-abnf library contains a procedure for parsing of JavaScript Object Notation (JSON) as described in RFC 4627. It is intended to conform closely to the ABNF grammar in the RFC.

See also json and medea.

Library Procedures

[procedure] (parser TEXT) => VALUE

Parses a JSON text and returns a corresponding Scheme value. JSON vectors and objects are represented as Scheme vectors and alists, respectively. JSON numbers, booleans and strings are represented as Scheme numbers, booleans and strings.

The JSON null constant is represented as 'null list in Scheme.

Repository

https://github.com/iraikov/chicken-json-abnf

Requires

Version History

License

 Copyright 2009-2018 Ivan Raikov
 This program is free software: you can redistribute it and/or
 modify it under the terms of the GNU General Public License as
 published by the Free Software Foundation, either version 3 of the
 License, or (at your option) any later version.
 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.
 A full copy of the GPL license can be found at
 <http://www.gnu.org/licenses/>.