Function: parseedn-read

parseedn-read is a byte-compiled function defined in parseedn.el.

Signature

(parseedn-read &optional TAG-READERS)

Documentation

Read content from current buffer and parse it as EDN source.

Returns an Emacs Lisp value.

TAG-READERS is an optional association list where keys are symbols identifying *tags*, and values are tag handler functions that receive one argument: *the tagged element*, and specify how to interpret it.

Source Code

;; Defined in ~/.emacs.d/elpa/parseedn-20231203.1909/parseedn.el
(defun parseedn-read (&optional tag-readers)
  "Read content from current buffer and parse it as EDN source.
Returns an Emacs Lisp value.

TAG-READERS is an optional association list where keys are symbols
identifying *tags*, and values are tag handler functions that receive one
argument: *the tagged element*, and specify how to interpret it."
  (parseclj-parser #'parseedn-reduce-leaf
                   #'parseedn-reduce-branch
                   (list (cons :tag-readers tag-readers))))