not-any?
builtin-function
(not-any? predicate seq)
Returns true if no elements of seq satisfy the function predicate.
seq
predicate
make-html > (not-any? odd? '(1 2 3 4)) it: false make-html > (not-any? odd? '(2 4)) it: true