Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

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

by chester (Hermit)
on Sep 20, 2005 at 16:43 UTC ( [id://493512]=note: print w/replies, xml ) Need Help??


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

What's the for doing, there? Doesn't this work?

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

edit: Doesn't solve the problem fully.

Replies are listed 'Best First'.
Re^3: Shortcut operator for $a->{'b'}=$b if $b;
by merlyn (Sage) on Sep 20, 2005 at 16:48 UTC
      Ah, I see. My mistake.
Re^3: Shortcut operator for $a->{'b'}=$b if $b;
by ikegami (Patriarch) on Sep 20, 2005 at 16:48 UTC

    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://493512]
help
Chatterbox?
and the web crawler heard nothing...

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

    No recent polls found