Help for this page

Select Code to Download


  1. or download this
    if ( grep { $_ eq $foobar} @array )
    {
    }
    
  2. or download this
    use List::Util qw(first);
    if ( first { $_ eq $foobar } @array )
    {
    }