Help for this page

Select Code to Download


  1. or download this
    %hash = map { getkey($_) => $_ } @array;
    
  2. or download this
    @anon_temp = ();
    foreach (@array) {
       push(@anon_temp, getkey($_), $_);
    }
    %hash = @anon_temp;
    
  3. or download this
    %hash = ();
    foreach (@array) {
       $hash{getkey($_)} = $_;
    }