Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Re: Class::Interface -- isa() Considered Harmful

by chromatic (Archbishop)
on Jan 17, 2003 at 17:28 UTC ( [id://227747]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    sub new
    {
        my ($class, $args) = @_;
    ...
        $self->init( $args->{init} );
        return $self;
    }
    
  2. or download this
    sub new
    {
        my ($class, $args) = @_;
        return unless $args;
        # ...
    
  3. or download this
    sub new
    {
        my ($class, $args) = @_;
        return unless $args;
        return unless UNIVERSAL::isa( $args, 'HASH' );
        # ...
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (2)
As of 2024-04-19 22:16 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found