Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: Boolean counter?

by moritz (Cardinal)
on Dec 07, 2009 at 08:21 UTC ( [id://811449]=note: print w/replies, xml ) Need Help??


in reply to Boolean counter?

You can just use ++ to increment your counter, but when you ask for its value use $counter % 2 instead of the counter itself.

Or if you're not interested in the numeric value 0, but rather that it's a false value, you can also use this update step:

$counter = !$counter;

Replies are listed 'Best First'.
Re^2: Boolean counter?
by JavaFan (Canon) on Dec 07, 2009 at 11:59 UTC
    Or if you do want the numerical value:
    $counter = !$counter || 0;

Log In?
Username:
Password:

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

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

    No recent polls found