-
-
24 Dec 2014 09:41:42 UTC
- Distribution: Package-Constants
- Module version: 0.06
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Repository
- Issues (1)
- Testers (3389 / 0 / 0)
- Kwalitee
Bus factor: 1- 96.08% Coverage
- License: perl_5
- Perl: v5.6.0
- Activity
24 month- Tools
- Download (3.68KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- Test::More
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
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 the package it is inspecting. Helps to identify issues when the results are not as you expect.
Defaults to false.
SEE ALSO
Module::Functions - get a list of all the public functions defined in a package.
BUG REPORTS
Please report bugs or other issues to <bug-package-constants@rt.cpan.org<gt>.
AUTHOR
This module by Jos Boumans <kane@cpan.org>.
COPYRIGHT
This library is free software; you may redistribute and/or modify it under the same terms as Perl itself.
Module Install Instructions
To install Package::Constants, copy and paste the appropriate command in to your terminal.
cpanm Package::Constants
perl -MCPAN -e shell install Package::Constants
For more information on module installation, please visit the detailed CPAN module installation guide.