:: (a -> Bool) -> ([a] -> Bool) package:express

Determines whether no element of the given list satisfies the predicate.
> none even [3,5,7,11,13]
True
> none even [7,5,3,2]
False