Help for this page

Select Code to Download


  1. or download this
    sub firstidx(&@) {
        my $code = shift;
        $code->( $_[ $_ ] ) and return $_ for 0 .. $#_;
    }
    
  2. or download this
    sub firstidx(&@) {
        my $code = shift;
        $code->( local $_ = $_[ $_ ] ) and return $_ for 0 .. $#_;
    }