Help for this page

Select Code to Download


  1. or download this
    sub hmap (&%)
    {
    ...
        push @rv, $code->(@_=(shift @i,shift @i)) while @i;
        @rv;
    }
    
  2. or download this
    sub hmap (&%) {
        my $code = shift;
    ...
        push @rv, $code->(shift @i,shift @i) while @i;
        @rv;
    }