This means `Collections.emptyList().any { true } =...
# functional
a
This means
Collections.emptyList().any { true } == false
and
Collections.emptyList().all { false } == true
👍 1