in reply to Re: On the rejected additions to List::Util
in thread On the rejected additions to List::Util

List::MoreUtils::any() also stops looking as soon as one of the blocks returned true. Check :

perl -MList::MoreUtils=any -E 'any { say $_; $_ < 5 ? 0 : 1 } 1 .. 10'