Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: Manipulate deepest values in complex hash structures

by pachydermic (Beadle)
on May 01, 2013 at 17:07 UTC ( [id://1031615]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Manipulate deepest values in complex hash structures
in thread Manipulate deepest values in complex hash structures

Great post, LanX. I have two questions:

For the line:

$type //= "SCALAR";

am I correct in thinking that this is using the or operator as you would like += or .=? So that $type takes the value "SCALAR" if it doesn't already have a value? I looked in perlop, but I wasn't aware you could use logical operators like that...

My second question is how

$code->($_[0]);

performs the operation on $_[0]. Currently I'm trying to become more comfortable with references (and they're very confusing), so I'd appreciate it if you could point me in the correct direction. I've already read http://perldoc.perl.org/perlreftut.html, but I'm trying to make it stick now.

Thanks in advance!

Replies are listed 'Best First'.
Re^4: Manipulate deepest values in complex hash structures
by LanX (Saint) on May 01, 2013 at 17:38 UTC
    > am I correct in thinking that this is using the or operator as you would like += or .=

    almost, you are describing ||= which assigns if the left side is false. you can find this combination in many languages.

    But current Perl versions also have // for defined-or, which only act on undef and not other false values.

    so $type //= "SCALAR" means $type = defined $type ? $type : "SCALAR";

    > performs the operation on $_[0]. Currently I'm trying to become more comfortable with references (and they're very confusing)

    It's even more confusing, cause it's not a reference but an alias. Changing elements of @_ means directly changing the passed arguments (see perlsub).

    Ironically references shouldn't be confusing, because in most languages arrays and hashes are always copied as references and automatically dereferenced. Perl is one of the rare languages which make a distinction between two flavours.

    In JS for instance something like a=[];b=a; a[1]=42; b[1] == 42 is true, because a and b are references to the same array.

    In Perl you need to explicitly copy references to achieve this, since @b=@a only copies the elements.

    But alternatively you can do like JS does with references:

    $a=[]; $b=$a; $a->[1]=42; $b->[1] == 42

    Cheers Rolf

    ( addicted to the Perl Programming Language)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1031615]
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-03-29 02:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found