Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Conditional Interpretation?

by gryphon (Abbot)
on Feb 01, 2006 at 03:06 UTC ( [id://526950]=note: print w/replies, xml ) Need Help??


in reply to Conditional Interpretation?

Greetings earcam,

One of the things we did was to use a constant (or a bitwise and set of constants) inside a right-side if conditional for whether we had debug statements work. The compiler optimizes away the entire line at run-time if the constant conditional is false.

do_something() if ($CONSTANT); do_something_else() if ($CONSTANT & $ANOTHER_CONSTANT);

Is this what you're looking for?

gryphon
Whitepages.com Development Manager (WDDC)
code('Perl') || die;

Replies are listed 'Best First'.
Re^2: Conditional Interpretation?
by ikegami (Patriarch) on Feb 01, 2006 at 03:14 UTC

    Constants don't have leading dollar signs.

    do_something() if (CONSTANT); do_something_else() if (CONSTANT & ANOTHER_CONSTANT);

    If there's a dollar sign, it's not a constant, and Perl won't optimize it away.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 21:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found