Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

RE: Default values in functions arguments

by Adam (Vicar)
on Sep 28, 2000 at 00:18 UTC ( [id://34276]=note: print w/replies, xml ) Need Help??


in reply to Default values in functions arguments

I use a slightly different, and probably slower, strategy for default arguments. I like it though, because it allows me to pass in multiple hashrefs. So it goes something like:
sub Whatever { # Optional test of the arguments. Good for catching programmer err +ors. # Not that anyone here ever makes any. 8-) die 'Takes a hash ref' if @_ and grep { "HASH" ne ref } @_; # Set up the defaults here: my %args = ( KEY1 => 'default value', KEY2 => 'etc...' ); # And process the args. my $index = @_; # Intentionally reverse the order. # The first hash thus has precedence. while( --$index >= $[ ) { $args{$_} = $_[$index]->{$_} for keys %{$_[$index]} } # Do stuff with %args. }
Also, instead of saying keys, you could use an array of legal key values (using uc or lc to handle case issues) and then overwrite $arg{$legalkey} if it exists in the passed in hash.

Note that I keep saying "passed in hash", what I should say is "hash that the passed in hashref references", but I'm lazy. Then again I added this comment... sigh

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (4)
As of 2024-04-19 02:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found