Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^2: Sort by -M

by roperl (Beadle)
on Feb 02, 2018 at 20:33 UTC ( [id://1208358]=note: print w/replies, xml ) Need Help??


in reply to Re: Sort by -M
in thread Sort by -M

That looks like it'll work.
Can you explain it. I'm not familiar with map

Replies are listed 'Best First'.
Re^3: Sort by -M
by AnomalousMonk (Archbishop) on Feb 02, 2018 at 23:08 UTC
Re^3: Sort by -M
by Marshall (Canon) on Feb 03, 2018 at 09:55 UTC
    map is a special "short-hand" for a "foreach loop".
    All map statements can be expressed as a "foreach loop".
    Consider:
    #!/usr/bin/perl use strict; use warnings; my @array = (1,2,3); @array = map {$_+1}@array; print "@array\n"; #prints: 2 3 4 foreach my $num (@array) { $num++; } print "@array\n"; #prints: 3 4 5
    Update: As an additional comment, sometimes I see a comment like "I didn't want to use a loop, so I used map". That is wrong. Map is a looping instruction whether it looks that way in the source code or not. A map vs a foreach loop winds up being basically the same in terms of how the input array is processed. I've seen 1/2 page map statements which in my opinion is an abuse of the feature. I use map for simple one line transformation operations. Mileage and situations vary.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-25 05:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found