function | since v0.0-927 | clojure.core/not= | Edit |
(not= x)
(not= x y)
(not= x y & more)
Returns the opposite of =
.
Same as (not (= x y))
Same as (not (= obj1 obj2))
(defn ^boolean not=
([x] false)
([x y] (not (= x y)))
([x y & more]
(not (apply = x y more))))