user=> (doc not=)
-------------------------
clojure.core/not=
([x] [x y] [x y & more])
Same as (not (= obj1 obj2))
nil
Funny, you could define! = To be the same as not = if you really wanted to:
user=> (def != not=)
user=> (!= 2 2)
false
user=> (!= 2 3)
true
source
share