MAN page from CentOS 6 psrk-perl-Package-Constants-0.02-27.5.noarch.rpm
Package::Constants
Section: Perl Programmers Reference Guide (3pm)
Updated: 2011-06-01
Index NAME
Package::Constants - List all constants declared in a package
SYNOPSIS
use Package::Constants; ### list the names of all constants in a given package; @const = Package::Constants->list( __PACKAGE__ ); @const = Package::Constants->list( 'main' ); ### enable debugging output $Package::Constants::DEBUG = 1;
DESCRIPTION
"Package::Constants" lists all the constants defined in a certain package. This can be useful for, among others, setting up an autogenerated
"@EXPORT/@EXPORT_OK" for a Constants.pm file.
CLASS METHODS
@const = Package::Constants->list( PACKAGE_NAME );
Lists the names of all the constants defined in the provided package.
GLOBAL VARIABLES
$Package::Constants::DEBUG
When set to true, prints out debug information to
STDERR about thepackage it is inspecting. Helps to identify issues when the resultsare not as you expect.
Defaults to false.
BUG REPORTS
Please report bugs or other issues to <bug-package-constantsAATTrt.cpan.org<gt>.
AUTHOR
This module by Jos Boumans <kaneAATTcpan.org>.
COPYRIGHT
This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.
Index
- NAME
- SYNOPSIS
- DESCRIPTION
- CLASS METHODS
- @const = Package::Constants->list( PACKAGE_NAME );
- GLOBAL VARIABLES
- $Package::Constants::DEBUG
- BUG REPORTS
- AUTHOR
- COPYRIGHT
This document was created byman2html,using the manual pages.