Managing JSON Data with the shasht Common Lisp Library
Parsing JSON Data
The primary mechanism for ingesting and parsing JSON text is the read-json function. It accepts an input source which may be a string, a stream, or nil (defaults to standard input).
(read-json &optional input (eof-error-p t) eof-value single-value-p)
The behavior of the parser is governed by several dynamic variables, all ...
Posted on Thu, 13 Aug 2026 16:19:19 +0000 by taurus5_6