| Name: | perl-parent |
|---|---|
| Epoch: | 1 |
| Version: | 0.238 |
| Release: | 457.module+el8.10.0+90354+a7e78d72 |
| Architecture: | noarch |
| Module: | perl:5.32:8100020240624030457:9fe1d287 |
| Group: | Unspecified |
| Size: | 9535 |
| License: | GPL+ or Artistic |
| RPM: | perl-parent-0.238-457.module+el8.10.0+90354+a7e78d72.noarch.rpm |
| Source RPM: | perl-parent-0.238-457.module+el8.10.0+90354+a7e78d72.src.rpm |
| Build Date: | Mon Jun 24 2024 |
| Build Host: | build-ol8-x86_64.oracle.com |
| Vendor: | Oracle America |
| URL: | https://metacpan.org/release/parent |
| Summary: | Establish an ISA relationship with base classes at compile time |
| Description: | Allows you to both load one or more modules, while setting up inheritance
from those modules at the same time. Mostly similar in effect to:
package Baz;
BEGIN {
require Foo;
require Bar;
push @ISA, qw(Foo Bar);
} |