Help for this page

Select Code to Download


  1. or download this
    my @spliced;
    push @spliced, [ splice @_, 0, $num_elements ] while @_;
    my @result = map func1($_), @spliced;
    
  2. or download this
    my @result;
    push @result, func1([ splice @_, 0, $num_elements ]) while @_;