logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Package::Constants - List all constants declared in a package

Author

       This module by Jos Boumans <kane@cpan.org>.

Bug Reports

       Please report bugs or other issues to <bug-package-constants@rt.cpan.org<gt>.

Class Methods

@const=Package::Constants->list(PACKAGE_NAME);
       Lists the names of all the constants defined in the provided package.

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.

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.

Name

       Package::Constants - List all constants declared in a package

See Also

       Module::Functions - get a list of all the public functions defined 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;

See Also