user=> (symbol? 'a) true user=> (symbol? 1) false user=> (symbol? :a) false
(defn symbol? "Return true if x is a Symbol" {:added "1.0"} [x] (instance? clojure.lang.Symbol x))
Comments top
No comments for symbol?. Log in to add a comment.