Help for this page

Select Code to Download


  1. or download this
    if ($_->{VALUE} eq $wanted) {
       return wantarray ? ( $_->{VALUE}, $_->{NAME}, $_->{ADDRESS} ) : 1;
    }
    
  2. or download this
    if ($_->{VALUE} eq $wanted) {
       return wantarray ? @$_{qw( VALUE NAME ADDRESS )} : 1;
    }