Help for this page

Select Code to Download


  1. or download this
    if (grep {$_ eq $e} @a) {
      # $e is in @a
    }
    
  2. or download this
    my %lookup = map { $_ => 1 } @a; # only do this once if you can
    if (exists $lookup{$e}) {
      # $e is in @a
    }