Help for this page

Select Code to Download


  1. or download this
    use List::MoreUtils qw( each_arrayref );
    
    ...
    while ( my ($idx, $v) = $each->() ) {
        print "$idx: $v\n";
    }
    
  2. or download this
    use List::MoreUtils qw( each_array );
    
    ...
        my $idx = $each->('index');
        print "$idx: $v\n";
    }