Help for this page

Select Code to Download


  1. or download this
    map($action1->($_), @arr);
    
  2. or download this
    my %cache;
    sub routine
    ...
        
        map{ $cache{ $_ } ||= $action1->($_) } @arr);
    }