Help for this page

Select Code to Download


  1. or download this
    sub indices ($@) {
      # note the prototype has target, then list
    ...
        grep { $_->[0] eq $target }
          map { [$_ , $index++] } @list;
    }