| Package-Util documentation | Contained in the Package-Util distribution. |
Package::Util - A Perl/XS implementation of package-related utilities
This module name is reserved for a dual Perl/XS module to access Perl
internal functionality for package-related functions such as
class-to-file path transformation, and various specific functionality
relating to packages, modules, classes and %INC.
The implementation is proposed for completion and inclusion in the core for the release of 5.10.
This module was originally planned for implementation as Module::Util, but unfortunately that name was subsequently taken (hence the blatant land grab for this name).
Adam Kennedy <adamk@cpan.org>
Jos Boumans <kane@cpan.org>
Copyright 2006 Adam Kennedy.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
The full text of the license can be found in the LICENSE file included with this module.
| Package-Util documentation | Contained in the Package-Util distribution. |
package Package::Util; BEGIN { require 5; } use strict; use vars qw{$VERSION}; BEGIN { $VERSION = '0.01'; } # These are here just as to invite comment sub package_inc { die 'package_inc not implemented'; } sub package_file { die 'package_file not implemented'; } sub modules_loaded { die 'module_loaded not implemented'; } sub class_loaded { die 'class_loaded not implemented'; } 1; __END__