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

Re: effects of ampersand and non ampersand when referencing a sub name

by tobyink (Canon)
on Dec 20, 2012 at 08:56 UTC ( [id://1009707]=note: print w/replies, xml ) Need Help??


in reply to effects of ampersand and non ampersand when referencing a sub name

Using a coderef at all bypasses prototypes. (As does calling a sub as a method.)

If you need to check the number of arguments passed to a sub, do it in the sub! Prototypes are just to help the Perl parser parse argument lists more sanely.

sub execute { @_==3 or croak "execute() needs three arguments!!"; ...; }
perl -E'sub Monkey::do{say$_,for@_,do{($monkey=[caller(0)]->[3])=~s{::}{ }and$monkey}}"Monkey say"->Monkey::do'
  • Comment on Re: effects of ampersand and non ampersand when referencing a sub name
  • Download Code

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (3)
As of 2024-04-26 00:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found