in reply to Quickly finding an element in an array

my %hash = map { $_ => undef } @start;
TIMTOWTDI, but building a hash of undef values can be done faster without map:
my %hash; @hash{@start} = ();

2;0 juerd@ouranos:~$ perl -e'undef christmas' Segmentation fault 2;139 juerd@ouranos:~$