Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re^2: A better (ie.more concise) way to write this?

by LanX (Saint)
on Dec 13, 2013 at 16:53 UTC ( [id://1067044]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      DB<132> sub cycle { $_[1]++; $_[1] %= $_[0] }
    
    ...
    
      DB<135> cycle 3 => $h{a}{b}[2]{c};   \%h
     => { a => { b => [undef, undef, { c => 0 }] } }
    
  2. or download this
    $h{a}{b}[2]{c}->cycle(3)
    
  3. or download this
      DB<160> $cycle = sub { $_[0]++; $_[0] %= $_[1] }
     => sub { "???" }
    ...
    
      DB<163> $h{a}{b}[2]{c}->$cycle(3);   \%h
     => { a => { b => [undef, undef, { c => 0 }] } }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (5)
As of 2024-03-28 08:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found