Package perl-parent: Information

  • Default inline alert: Version in the repository: 0.241-alt1

Binary package: perl-parent
Version: 0.238-alt1
Architecture: noarch
Build time:  Feb 13, 2020, 06:40 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


Feb. 12, 2020 Igor Vlasenko 0.238-alt1
- automated CPAN update
July 8, 2018 Igor Vlasenko 0.237-alt1
- automated CPAN update
Oct. 19, 2016 Igor Vlasenko 0.236-alt1
- automated CPAN update