http://www.perlmonks.org?node_id=502010


in reply to question for perl book & magazine authors

map and grep are not picked up as quickly by new Perl programmers as for, for several reasons.

First, new programmers will have difficulty lining up multiple actions all at once. Compare these:

my @newlist = map { $_*2 } @list; my @list; my @newlist; for my $item( @list) { push @newlist, $item * 2; }
The first example examines all values of @list (one at a time of course), multiplies each value by 2, and saves all resulting values into @newlist.

The second example is easier for a newbie to manage. It loops through @list, one at a time. Each time through, $item will hold the active value. Multiply each value by 2, and save it in @newlist.

Second, it's easier to debug the 2nd example. There are several places to breakpoint or print out intermediate results to check that the code behaves as expected. Printing out intermediate results in a map is also easy, but it has to be done carefully to avoid munging the map return values.

My point is that a newbies coming from some other languages (those without map or grep) would be more comfortable with the 2nd form. Once entrenched, they are less likely to embrace map and grep without extra incentives.

-QM
--
Quantum Mechanics: The dreams stuff is made of