Define EDN and Clojure reader functions. EDN functions accept a value and parse it into a final object. Clojure functions accept a value and produce a form which, when evaluated, produces a value. This is to prevent double evaluation of an object. For details, see that thread: https://clojurians.slack.com/archives/C03S1KBA2/p1735626685896359
Define EDN and Clojure reader functions. EDN functions accept a value and parse it into a final object. Clojure functions accept a value and produce a _form_ which, when evaluated, produces a value. This is to prevent double evaluation of an object. For details, see that thread: https://clojurians.slack.com/archives/C03S1KBA2/p1735626685896359
(defreader tag [bind] & body)
A macro to do many things in one step, namely:
A macro to do many things in one step, namely: - define an EDN reader function; - add it to the global map of EDN readers; - add an entry into the global map of Clojure readers; - define a Clojure reader function that relies on the edn reader.
(tag->name tag)
Correct some characters when declaring a reader function.
Correct some characters when declaring a reader function.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close