Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^2: Problems with map(function, array)

by Redei (Initiate)
on Dec 10, 2012 at 21:26 UTC ( [id://1008166]=note: print w/replies, xml ) Need Help??


in reply to Re: Problems with map(function, array)
in thread Problems with map(function, array)

My problem is what happens when I don't use $_:
sub twice { 2 * $_[0] } @a = map twice, 1..3; print "@a\n"; ==> 0 0 0

Replies are listed 'Best First'.
Re^3: Problems with map(function, array)
by eyepopslikeamosquito (Archbishop) on Dec 10, 2012 at 21:36 UTC

    Your original code with strict and warnings:

    use strict; use warnings; sub twice { 2 * $_[0] } my @a = map twice, 1..3; print "@a\n";
    gives the warning "Use of uninitialized value $_[0] in multiplication (*) at map1.pl line 3".

    This is how it should be written:

    use strict; use warnings; sub twice { 2 * $_[0] } my @a = map twice($_), 1..3; print "@a\n";
    which produces 2 4 6 as expected.

    BTW, Conway, in Perl Best Practices, chapter 8, recommends always using the block form of map, not the expression form that you are using. The expression form might be faster than the block form though (if that matters, you should benchmark it).

      Thank you for the suggestions. I should have been using strict and warnings, of course. Maybe then I would have seen more easily where my problem was.

      I don't have Conway's book, so I can't see in what context he recommends using the block (rather than the expression) form of map. But I do have reasons for wanting the expression form:

      • It's legal syntax, so it should be useable. (And it is, of course, if you don't make the kind of mistake I did.)
      • It's more elegant for a single-parameter function. At least I think so.

Re^3: Problems with map(function, array)
by LanX (Saint) on Dec 10, 2012 at 21:30 UTC
    the LIST elements are ALWAYS passed via $_ per iteration.

    you call twice w/o parameters so $_[0] is undef and undef*2 == 0!

    take again a look at my "add"-example to distiguish between parameters and iteration value

    Cheers Rolf

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1008166]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (4)
As of 2024-04-19 03:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found