Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^8: in search of a more elegant if then else

by TimToady (Parson)
on Feb 21, 2010 at 03:13 UTC ( [id://824458]=note: print w/replies, xml ) Need Help??


in reply to Re^7: in search of a more elegant if then else
in thread in search of a more elegant if then else

I have a vague preference for the last one, but only because it's most like how I'd actually write it:
my @filtered = do for $s.comb -> $a, $b { [ $a, $b ] if $a ne $b; }
or maybe slightly clearer would be:
my @filtered = gather for $s.comb -> $a, $b { take [ $a, $b ] if $a ne $b; }
But mathematicians are likely to prefer the list comprehension syntax, I suspect.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-20 01:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found