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)] );