Help for this page

Select Code to Download


  1. or download this
        my @list;
        foreach  my $hand ( in $ou_hand ) {
    ...
            push @list, $hand;
        };
        return [ @list ];
    
  2. or download this
        [ grep { $_->{Class} eq $type } in $ou_hand ]