all package:text-short

Test whether all code points in ShortText satisfy a predicate.
>>> all (const False) ""
True
>>> all (> 'c') "abcdabcd"
False
>>> all (/= 'c') "abdabd"
True