Help for this page

Select Code to Download


  1. or download this
    my $f = !!grep { $_ eq 'abc' } @a;
    if ($f) { ... }
    
  2. or download this
    my $f = grep { $_ eq 'abc' } @a;
    if ($f) { ... }
    
  3. or download this
    if (grep { $_ eq 'abc' } @a) { ... }