![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re: List arguments of a methodby moritz (Cardinal) |
on May 15, 2014 at 09:10 UTC ( #1086122=note: print w/replies, xml ) | Need Help?? |
I want to list the arguments of allVars that is - $no1, $no2, $name1 and $name2. In the usual Perl nomenclature, the arguments are simply the values that are passed in, and those can be found in @_. Perl 5 doesn't (yet) support formal parameter lists / signatures of subroutines, so you can't introspect them. Perl 6 exposes signatures as objects, and allows you introspect that parameter list:
In Section
Seekers of Perl Wisdom
|
|