tagged-literal

functionsince v0.0-3255 clojure.core/tagged-literalEdit
(tagged-literal tag form)

Details:

Internal use only. Create tagged literals with their syntax form instead.


Source docstring:
Construct a data representation of a tagged literal from a
tag symbol and a form.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn tagged-literal
  [tag form]
  {:pre [(symbol? tag)]}
  (TaggedLiteral. tag form))