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

Re: How to use Inheritance with Inside-Out Classes and Hash Based Classes

by ikegami (Patriarch)
on Nov 15, 2005 at 17:13 UTC ( [id://508697]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub AUTOLOAD {
       my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
    ...
    
       goto($stub);
    }
    
  2. or download this
    sub AUTOLOAD {
       my $method = substr($AUTOLOAD, rindex($AUTOLOAD, '::')+2);
    ...
       
       goto($code_ref);
    }
    
  3. or download this
    sub can {
       my $p = shift(@_);
       return UNVERSAL::can($p, @_) || File::Samba->can(@_);
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-03-28 23:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found