Package perl-parent: Information

    Source package: perl-parent
    Version: 0.237-alt1
    Build time:  Apr 11, 2019, 07:16 AM
    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);
        }

    List of rpms provided by this srpm:
    perl-parent (noarch)

    Maintainer: Michael Bochkaryov

    List of contributors:
    Igor Vlasenko
    Michael Bochkaryov

      1. perl-devel

    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