Help for this page

Select Code to Download


  1. or download this
    for ( grep { filter($_) } @big_array ) {
        # do stuff
    }
    
  2. or download this
    for ( @big_array ) {
        next if ! filter($_);
        # do stuff
    }