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