function | since v0.0-927 | clojure.core/not-any? | Edit |
(not-any? pred coll)
Returns false if (pred x)
is logical true for any x
in coll
, else true.
Returns false if (pred x) is logical true for any x in coll, else true.
(defn not-any?
[pred coll] (not (some pred coll)))