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