not=

functionsince v0.0-927 clojure.core/not=Edit
(not= x)
(not= x y)
(not= x y & more)

Details:

Returns the opposite of =.

Same as (not (= x y))


See Also:


Source docstring:
Same as (not (= obj1 obj2))
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn ^boolean not=
  ([x] false)
  ([x y] (not (= x y)))
  ([x y & more]
   (not (apply = x y more))))