user=> (name :x) "x" user=> (name "x") "x" user=> (name 'x) "x"
(defn name "Returns the name String of a string, symbol or keyword." {:tag String :added "1.0" :static true} [x] (if (string? x) x (. ^clojure.lang.Named x (getName))))
Comments top
No comments for name. Log in to add a comment.