Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re: Shortcut operator for $a->{'b'}=$b if $b;

by merlyn (Sage)
on Sep 20, 2005 at 16:33 UTC ( [id://493507]=note: print w/replies, xml ) Need Help??


in reply to Shortcut operator for $a->{'b'}=$b if $b;

Ugly, but short:
$_ and $a->{b} = $_ for $b;

-- Randal L. Schwartz, Perl hacker
Be sure to read my standard disclaimer if this is a reply.

Replies are listed 'Best First'.
Re^2: Shortcut operator for $a->{'b'}=$b if $b;
by chester (Hermit) on Sep 20, 2005 at 16:43 UTC
    What's the for doing, there? Doesn't this work?

    $b and $a->{'b'} = $b

    edit: Doesn't solve the problem fully.

        Ah, I see. My mistake.

      foreach loops sets $_ to refer to the current value in the list which is being iterated. In this case, the list consists solely of $b.

      Your expression is equivalent, but it's not an acceptable answer since the question was about removing the need for using $b twice.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (5)
As of 2024-04-19 15:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found