Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Re: Re: Re: Idiomatic optimizations

by Joost (Canon)
on May 01, 2002 at 08:29 UTC ( [id://163221]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: Re: Idiomatic optimizations
in thread Idiomatic optimizations

Just a few remarks (though i've got a sneaking suspicion i'm correcting typos here):

> my $i ||=0 ;

here $i will always turn out to be 0 (because of the my operator), so my $i=0; is more efficient.

> $i?$i=1:$i=0;
How about $i=$i?1:0; - that's also a bit more readable. (at least to my eyes).

Joost.

Log In?
Username:
Password:

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

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

    No recent polls found