Package perl-parent: Information

    Binary package: perl-parent
    Version: 0.237-alt1
    Architecture: noarch
    Build time:  Aug 12, 2018, 12:00 PM
    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


    July 8, 2018 Igor Vlasenko 0.237-alt1
    - automated CPAN update
    Oct. 19, 2016 Igor Vlasenko 0.236-alt1
    - automated CPAN update
    Oct. 11, 2015 Igor Vlasenko 0.234-alt1
    - automated CPAN update