Help for this page

Select Code to Download


  1. or download this
        my @fields = REQUIRED_FIELDS;
        for my $e (@$a) {
    ...
                }
            }
        }
    
  2. or download this
        my %fields = map { $_ => 1 } REQUIRED_FIELDS;
        for my $e (@$a) {
            $href->{$e} = 0
                if $fields{$e};
        }