Help for this page

Select Code to Download


  1. or download this
    my @opts= qw( This That TheOther Else Foo Bar Blatz );
    my %opts;
    @opts{@opts}= 1x@opts;
    ...
        }
        return @{$href}{@_};
    }
    
  2. or download this
    sub _populate_hash
    {
     my $hvHash= shift(@_);
    ...
     croak unless @$avValues == @$avNames;
     @{$hvHash}{@$avNames}= @$avValues;
    }