Subject: | Implement 'any LIST', 'all LIST' constructions |
Some times we just check TRUE and do not require bare { $_ }:
any { $_ } @list
all { $_ } @list
It will be more handy to have same syntax as 'sort' has:
sort SUBNAME LIST
sort BLOCK LIST
sort LIST
So we can write:
any @list
all @list