| Name: | perl-parent | 
|---|---|
| Epoch: | 1 | 
| Version: | 0.237 | 
| Release: | 1.el8 | 
| Architecture: | noarch | 
| Group: | Unspecified | 
| Size: | 9187 | 
| License: | GPL+ or Artistic | 
| RPM: | perl-parent-0.237-1.el8.noarch.rpm | 
| Source RPM: | perl-parent-0.237-1.el8.src.rpm | 
| Build Date: | Thu Mar 07 2019 | 
| Build Host: | ca-build101.us.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);
	} |