Help for this page

Select Code to Download


  1. or download this
    $a1 = [undef, item2];
    $a2 = [item1, undef];
    
  2. or download this
    $a3 = [item1, undef];
    
  3. or download this
    $a3 = [item1, item2];
    
  4. or download this
    'LEFT_PRECEDENT' => {
           'SCALAR' => {
    ...
               'HASH'   => sub { _merge_hashes( $_[0], $_[1] ) },
           },
       },
    
  5. or download this
    sub _merge_arrays {
       my ( $left, $right ) = ( shift, shift );
    ...
           }
       }#for     return \@newarray;
    }