function | since v0.0-3255 | clojure.core/tagged-literal | Edit |
(tagged-literal tag form)
Internal use only. Create tagged literals with their syntax form instead.
Construct a data representation of a tagged literal from a tag symbol and a form.
(defn tagged-literal
[tag form]
{:pre [(symbol? tag)]}
(TaggedLiteral. tag form))