slackbuilds/perl/perl-namespace-autoclean
Andrew Clemons 2214b221f4
perl/perl-namespace-autoclean: Add missing dependency.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
2021-08-30 06:55:57 +07:00
..
README perl/perl-namespace-autoclean: Added (imports out of namespace). 2018-03-22 00:06:06 +00:00
perl-namespace-autoclean.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
perl-namespace-autoclean.info perl/perl-namespace-autoclean: Add missing dependency. 2021-08-30 06:55:57 +07:00
slack-desc perl/perl-namespace-autoclean: Added (imports out of namespace). 2018-03-22 00:06:06 +00:00

README

When you import a function into a Perl package, it will naturally also
be available as a method.

The namespace::autoclean pragma will remove all imported symbols at the
end of the current package's compile cycle. Functions called in the
package itself will still be bound by their name, but they won't show
up as methods on your class or instances.

This module is very similar to namespace::clean, except it will clean
all imported functions, no matter if you imported them before or after
you used the pragma. It will also not touch anything that looks like a
method.