Name: | perl-parent |
---|---|
Epoch: | 1 |
Version: | 0.241 |
Release: | 512.el10 |
Architecture: | noarch |
Group: | Unspecified |
Size: | 9959 |
License: | GPL-1.0-or-later OR Artistic-1.0-Perl |
RPM: | perl-parent-0.241-512.el10.noarch.rpm |
Source RPM: | perl-parent-0.241-512.el10.src.rpm |
Build Date: | Tue Jan 28 2025 |
Build Host: | build-ol10-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); } |