Help for this page

Select Code to Download


  1. or download this
    my @cleaned_AoA1 = map { grep length, @$_ } @AoA1;
    
  2. or download this
    foreach (@AoA1) {
       @$_ = grep length, @$_;
    }
    
  3. or download this
    sub make_scrubber {
       my ($aref) = @_;
    ...
    my $iter = NestedLoops(
       [ map { make_scrubber($_) } @AoA1 ]
    );