Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

Re: ||= (poorly documented?)

by Anonymous Monk
on Jul 09, 2012 at 06:36 UTC ( [id://980659]=note: print w/replies, xml ) Need Help??


in reply to ||= (poorly documented?)

Yep, that is right and it works the way it reads.
perl -e "my $shoo = 50; $shoo ||= 100; print $shoo;"
Prints
50
Should be the same as,
perl -e "$shoo=50; $shoo = ($shoo)?50 : 100;print $shoo;"
If you scroll down in perlop you'll see that style used to describe what // does, so they appear to be equivalent.

Celebrate Intellectual Diversity

Replies are listed 'Best First'.
Re^2: ||= (poorly documented?)
by frozenwithjoy (Priest) on Jul 09, 2012 at 06:47 UTC
    If you scroll down in perlop you'll see that style used to describe what // does, so they appear to be equivalent.
    || tests for truthiness (and, therefore, definedness), whereas // only tests for definedness.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2025-06-24 07:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.