Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Array mysteriously growing

by AntsPants (Novice)
on Mar 09, 2006 at 15:01 UTC ( [id://535403]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $next_version_key = $ordered_list->[($i+1)]->[0] 
         if( $ordered_list->[($i+1)] );
    
  2. or download this
    my $next_version_key = $ordered_list->[($i+1)]->[0] || undef;
    
  3. or download this
    [] to @{ $ordered_list }
    
  4. or download this
     
    [
      undef,
      {}
    ]
    
  5. or download this
    [
      ${\$VAR1->[3][0]},
      {}
    ]
    
  6. or download this
    my $next_version_key = $ordered_list->[($i+1)]->[0] || 0;
    
  7. or download this
    my $next_version_key = $ordered_list->[($i+1)]->[0] 
         if( $ordered_list->[($i+1)] );
    

Log In?
Username:
Password:

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

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

    No recent polls found