any -package:relude -package:streaming -package:text package:base-prelude

Determines whether any element of the structure satisfies the predicate.
Boolean monoid under disjunction (||).
>>> getAny (Any True <> mempty <> Any False)
True
>>> getAny (mconcat (map (\x -> Any (even x)) [2,4,6,7,8]))
True
Zero or more.