Package::Util - A Perl/XS implementation of package-related utilities


Package-Util documentation Contained in the Package-Util distribution.

Index


Code Index:

NAME

Top

Package::Util - A Perl/XS implementation of package-related utilities

DESCRIPTION

Top

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).

AUTHORS

Top

Adam Kennedy <adamk@cpan.org>

Jos Boumans <kane@cpan.org>

COPYRIGHT

Top


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__