Package perl-parent: Information

    Binary package: perl-parent
    Version: 0.234-alt1
    Architecture: noarch
    Build time:  Oct 12, 2015, 09:25 AM in the task #151176
    Source package: perl-parent
    Category: Development/Perl
    Report package bug
    License: Artistic
    Summary: Establish an ISA relationship with base classes at compile time
    Description: 
    "parent" allows you to both load one or more modules, while setting up inheritance from
    those modules at the same time
    
    		package Baz;
    		use parent qw(Foo Bar);
    
    mostly is similar in effect to
    
        package Baz;
        BEGIN {
            require Foo;
            require Bar;
            push @ISA, qw(Foo Bar);
        }

    Maintainer: Michael Bochkaryov

    List of contributors:
    Igor Vlasenko
    Michael Bochkaryov

    Last changed


    Oct. 11, 2015 Igor Vlasenko 0.234-alt1
    - automated CPAN update
    April 1, 2015 Igor Vlasenko 0.232-alt1
    - automated CPAN update
    Sept. 23, 2013 Igor Vlasenko 0.228-alt1
    - automated CPAN update