| Name: | perl-parent |
|---|---|
| Epoch: | 1 |
| Version: | 0.237 |
| Release: | 2.module+el8.1.0+5399+8245a79b |
| Architecture: | noarch |
| Module: | perl:5.24:8010020190529084201:ee766497 |
| Group: | Unspecified |
| Size: | 9158 |
| License: | GPL+ or Artistic |
| RPM: | perl-parent-0.237-2.module+el8.1.0+5399+8245a79b.noarch.rpm |
| Source RPM: | perl-parent-0.237-2.module+el8.1.0+5399+8245a79b.src.rpm |
| Build Date: | Sat Nov 09 2019 |
| Build Host: | jenkins-10-147-72-125-11590f9b-7638-47cb-8088-559344c0d855.appad1iad.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);
} |