not-every?

functionsince v0.0-927 clojure.core/not-every?Edit
(not-every? pred coll)

Details:

Returns false if (pred x) is logical true for every x in coll, else true.


See Also:


Source docstring:
Returns false if (pred x) is logical true for every x in
coll, else true.
Source code @ clojurescript:src/main/cljs/cljs/core.cljs
(defn not-every?
  [pred coll] (not (every? pred coll)))