Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Idiomatic optimizations

by jlongino (Parson)
on Apr 29, 2002 at 17:45 UTC ( [id://162878]=note: print w/replies, xml ) Need Help??


in reply to Idiomatic optimizations

Most of the optimizations listed can be found in the "Other Oddments" chapter of the Camel in the section "Efficiency". But one of my favorites (also in the Camel, but paraphrased using $x/$y/$z instead of $a/$b/$c):
Use $foo = $x || $y || $z; This is much faster (and shorter to say) +than: if ($x) { $foo = $x; } elsif ($y) { $foo = $y; } elsif ($z) { $foo = $z; }

--Jim

Log In?
Username:
Password:

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

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

    No recent polls found