user=> (not= 1 1) false user=> (not= 1 2) true user=> (not= true true) false user=> (not= true false) true user=> (not= true true true true) false user=> (not= true true false true) true
(defn not=
"Same as (not (= obj1 obj2))"
{:tag Boolean
:added "1.0"
:static true}
([x] false)
([x y] (not (= x y)))
([x y & more]
(not (apply = x y more))))
Comments top
No comments for not=. Log in to add a comment.