Help for this page

Select Code to Download


  1. or download this
    my @result = map { f($_) ? g($_) : () } @list;
    
    ...
    for (@list) {
      push(@result, g($_)) if (f($_));
    }