Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: passing paramters to a sub

by Roger (Parson)
on Aug 30, 2005 at 09:18 UTC ( [id://487682]=note: print w/replies, xml ) Need Help??


in reply to passing paramters to a sub

Other monks have already pointed you in the right direction with passing structures by reference.

I just want to point out that it is possible not to pass by reference for your benefit.

A simple hash basically has keys and corresponding values. Knowning this, you can write your code like this:
whatever(%hash, $val) ... sub whatever { my $v = pop; my %h = @_; # %hash was expanded into list of key-value pairs # reconstruct hash from array of key-value pairs ... }

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (5)
As of 2024-04-25 14:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found