Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: shift implicit dereference

by LanX (Saint)
on Oct 06, 2013 at 13:39 UTC ( [id://1057148]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      DB<122> $a
     => 5
    ...
    
      DB<125> $a
     => 7
    
  2. or download this
      DB<126> sub ref_add { ${ shift() }+=2 }
    
    ...
    
      DB<131> $a
     => 11
    
  3. or download this
      DB<102> $a=11
     => 11
    ...
    
      DB<104> ref_add3 \$a; $a
     => 13
    
  4. or download this
           Any arguments passed in show up in the array @_.  Therefore, if
    + you
           called a function with two arguments, those would be stored in 
    +$_[0]
    ...
           for the actual scalar parameters.  In particular, if an element
    + $_[0]
           is updated, the corresponding argument is updated (or an error 
    +occurs
           if it is not updatable).
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-20 00:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found