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