Altlast 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
..
patch 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
README 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-lib.cm 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-lib.mlb 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-parser.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-printer.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-stream-parser.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-stream-printer.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-tokens.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json-util.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json.lex 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json.lex.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش
json.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 سال پیش

README

This library supports the reading and writing of structured data using
the "JavaScript Object Notation" (JSON). This format is specified by
RFC 7159 (https://tools.ietf.org/html/rfc7159).

There are two levels of I/O supported. The "stream" level supports
event-based parsing (e.g., like a SAX parser for XML) and output at
the same level. Use this mode to extract small amounts of information
from large files or when you want to directly build your own representation
of the file. The "file" level supports a "DOM-style" approach that reads/writes
trees (see json.sml for the representation).

TODO:
add support for UBJSON (http://ubjson.org) or possibly one of the
other binary JSON representations