not-any?

added
1.0

ns
clojure.core

type
function

(not-any? pred coll)

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

                user=> (not-any? odd? '(2 4 6))
true
user=> (not-any? odd? '(1 2 3))
false