Help for this page

Select Code to Download


  1. or download this
       my @ary1 = ( [1, 2], [3, 4]);
       my @ary2 = ( [4, 5], [6, 7]);
       my $ea = List::MoreUtils::each_array(@ary1, @ary2);
    
  2. or download this
       my @ary1 = ( [1, 2], [3, 4]);
       my @ary2 = ( [4, 5], [6, 7]);
       my $ea = List::MoreUtils::each_array(@ary1, @ary2);
    
  3. or download this
       my $ea = List::MoreUtils::each_arrayref(\@ary1, \@ary2);