RSS | Module Info | Add a review of List-MoreUtils

3 out of 3 found this review helpful:

List-MoreUtils (0.22) *****

Hugely useful list of utility functions that I find make my code easier to write, easier to read and faster.

Well documented. Does what it says it does.

Adrian Howard - 2009-08-03T02:54:33

Was this review helpful to you?  Yes No
8 out of 8 found this review helpful:

List-MoreUtils (0.22) ****

I'm still discovering things to like about this module. For example "pairwise" is a nice thing to use until iterators come along:

@products = pairwise { $a * $b } @factors1, @factors2;

Joe Brenner - 2007-10-23T14:06:36

Was this review helpful to you?  Yes No
12 out of 12 found this review helpful:

List-MoreUtils (0.22) *****

A hugely useful set of utility functions.

Not only do they make your code smaller, but in situations where you have lots of very tight iterative code with many many subroutine calls, they can also make your code significantly faster as well.

The only thing I wish it had would be to let me spell "uniq" as "distinct" in SQL style.

Adam Kennedy - 2007-09-12T18:00:08

Was this review helpful to you?  Yes No
5 out of 5 found this review helpful:

List-MoreUtils (0.18) ****

These are useful utilities, but I have a problem with the names of some of the functions.

"true" and "false" return counts of the number of true or false return values in code blocks operating on the lists. But reading code which uses them is confusing. One would expect them to return truth values, not numbers. A more intuitive name would be "count". (And one only needs a count-true method; false is easy to implement from that.)

One could nitpick about other function names, but they're not as critical.

Robert Rothenberg - 2006-02-25T10:29:33

Was this review helpful to you?  Yes No
6 out of 6 found this review helpful:

List-MoreUtils (0.12) *****

If I were an array object, I would want these as my methods. They do all the things you hate writing over and over, and a bunch more things that you'll realize you should've been writing but never did. It makes List::Util look like a tinkertoy.

Ricardo Signes - 2005-11-04T18:41:58

Was this review helpful to you?  Yes No


the camel