Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: dispatch table of functions and arguments

by fglock (Vicar)
on Sep 03, 2002 at 13:16 UTC ( [id://194757]=note: print w/replies, xml ) Need Help??


in reply to dispatch table of functions and arguments

%func = { Click => { func => \&compute, param => [ @param ] }, Click2 => { func => \&compute2, param => [ @param2 ] }, };
----------

update: How to set a parameter:

$func{Click2}{param} = [ 1, 2, "hello" ];

How to call a function:

&{ $func{Click2}{func} } ( @{$func{Click2}{param}} );

update: corrected @{} in func call

----------

There are many more ways to do it.

Also:

... Click => { func => \&compute, param => \@param }, ...

Or:

... Click => [ \&compute, \@param ], ...

Log In?
Username:
Password:

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

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

    No recent polls found