List::Util, List::MoreUtils, Util::Any (Unfortunately, Part 1)
The dichotomy of List::Util and List::MoreUtils is one of the unfortunate annoyances in Perl. One is without s, one is with s. Which function belongs to which? And no, you can't simply say, "f*ck it, just import everything!" as List::Util doesn't provide the usual ":all" import tag (RT).
Some thoughts (from someone who is largely ignorant on the history of both modules), all IMO:
1. Since List::Util is basically a convenient library, convenience should've been its main design goal. It should've been inclusive enough. The decision to deny the inclusion of any(), all(), none() just because they are too "trivial" to implement in one line of Perl was a bit strange, since max(), min(), etc are also trivial to implement in Perl.
2. List::MoreUtils should've included all the functionalities of List::Util, so one can use it *instead of* List::Util.
But hey, what happened happened.
Btw, we also have Perl 6's junction taking the "all", "any", "none" keyword.