| Name: | perl-parent |
|---|---|
| Epoch: | 1 |
| Version: | 0.237 |
| Release: | 2.module+el8.3.0+7729+86a74f64 |
| Architecture: | noarch |
| Module: | perl:5.30:8030020200609055348:8af31532 perl:5.30:8040020200923213406:466ea64f |
| Group: | Unspecified |
| Size: | 9187 |
| License: | GPL+ or Artistic |
| RPM: | perl-parent-0.237-2.module+el8.3.0+7729+86a74f64.noarch.rpm |
| Source RPM: | perl-parent-0.237-2.module+el8.3.0+7729+86a74f64.src.rpm |
| Build Date: | Tue Aug 11 2020 |
| Build Host: | jenkins-10-147-72-125-df74590a-7496-4915-9dd0-d2fcdb1902bc.appad2iad.osdevelopmeniad.oraclevcn.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);
} |