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