user=> (nil? nil) true user=> (nil? 0) false user=> (nil? false) false
Returns its argument.
(defn nil? "Returns true if x is nil, false otherwise." {:tag Boolean :added "1.0"} [x] (clojure.lang.Util/identical x nil))
Comments top
No comments for nil?. Log in to add a comment.