Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: interface.pm explained

by Ovid (Cardinal)
on Aug 02, 2004 at 13:58 UTC ( [id://379285]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use Class::Trait
        some_trait => { 
            exclude => [ "methods_I_dont_want" ]
        };
    
  2. or download this
    use Class::Trait
        some_trait => {
            alias => { old_name => 'new_name' }
        };
    
  3. or download this
    package SomeThingOrOther;
    use base qw/GirlFriend Bomb/;
    ...
    
  4. or download this
    use Class::Trait
        GirlFriend => { exclude => [ "explode" ] };
    use Class::Trait
        Bomb       => { exclude => [ "some_method_in_girlfriend" ] };
    
  5. or download this
    use Class::Trait 'TPrintable';
    use Class::Trait 'TId';
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (4)
As of 2024-03-29 08:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found