special-symbol?

clojure.core

  • (special-symbol? s)
Returns true if s names a special form

0 Examples top

Log in to add / edit an example.

See Also top

Log in to add a see also.

Plus_12x12 Minus_12x12 Source clojure/core.clj:4374 top

(defn special-symbol?
  "Returns true if s names a special form"
  {:added "1.0"
   :static true}
  [s]
    (contains? (. clojure.lang.Compiler specials) s))
Vars in clojure.core/special-symbol?:
Used in 0 other vars

Comments top

No comments for special-symbol?. Log in to add a comment.