Altlast 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
..
patch 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
README 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-lib.cm 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-lib.mlb 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-parser.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-printer.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-stream-parser.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-stream-printer.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-tokens.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json-util.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json.lex 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json.lex.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa
json.sml 6879f24188 20171018 nodes2grafana initial (FreeBSD) 7 anni fa

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