- or download this
my %hash = ();
my $dummy = map( $hash{ $_ } = 1, @array );
...
if ( defined( $hash{ $checkthis )) {
...
}
- or download this
my $found = ( $_ eq $checkthis ) && last for ( @array );
- or download this
use strict;
use warnings;
...
else {
die "Invalid parent reference";
}