http://qs321.pair.com?node_id=189856


in reply to Re: Array to hash refs
in thread Array to hash refs

my @array = qw /a b c/; my %hash = map {$_ => 1} @array; return \%hash;

can that be done with a map and a hashref rather than having to return a hashref? ripped off from tadman in Re: an easier way with grep, map, and/or sort?.
--au