cljs.reader/dispatch-macros

functionremoved v1.9.854added v0.0-927Edit
(dispatch-macros s)

Source code @ clojurescript:src/main/cljs/cljs/reader.cljs
(defn dispatch-macros [s]
  (cond
   (identical? s "{") read-set
   (identical? s "<") (throwing-reader "Unreadable form")
   (identical? s "\"") read-regex
   (identical? s"!") read-comment
   (identical? s "_") read-discard
   :else nil))