not-any?

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

Details:

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


See Also:


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