Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^6: How to return values from a hash?

by perl-diddler (Chaplain)
on Mar 30, 2013 at 14:46 UTC ( [id://1026276]=note: print w/replies, xml ) Need Help??


in reply to Re^5: How to return values from a hash?
in thread How to return values from a hash?

Sorry, that was a last minute change. In order to simplify the code for inclusion here, I left out a trivial optimization where I convert HASH to an integer:
use constant Array => 1; use constant Hash => Array << 1; our %_typemap=(ARRAY=>Array, HASH=>Hash); sub _Var ($$$;$) { # Wrkhorse code for manu +fctrd Vars my ($__, $p, $vn, $wa)=@$_; $_=$__; # must not trash '$_' my $v = $p->{$vn}; # value my $rfv = ref $v; # type(ref) of var my $rfvi = $_typemap{$rfv} || 0; my ($arg, $addrof); if ($wa && $wa eq '&#945;') { $wa=undef, $addrof=1 } if (@_ && !$addrof) { # arg for "setter" $arg = shift; my $refarg = ref $arg; # ref of the arg unless ( defined($p->{$vn}) && defined $arg ){ # unless both de +fined $p->{$vn} = $arg; } elsif ($rfvi == Array) { ## if type(var)==ARRAY, +1 param if ($refarg ne "ARRAY" || (@$arg || @$v)) { push @{$p->{$vn}}, $_[0]; ## convert to "push" } } elsif ($rfvi == Hash) {
I tried to cut down the amount of code included by cutting out the integer thing...sorry. I didn't want to get dinged for not trying to cut things down...

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1026276]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others learning in the Monastery: (6)
As of 2024-04-18 06:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found