Help for this page

Select Code to Download


  1. or download this
    if ( any { $_ eq $foo } @list ) {
    
    }
    
  2. or download this
    if ( first { ! defined $_ } @list ) {
        # Does not get called if it matches
    ...
    if ( any { ! defined $_ } @list ) {
        # Does get called it if matches
    }