Keep imports and functions out of your namespace
When you define a function, or import one, into a Perl package, it will naturally also be available as a method. This does not per se cause problems, but it can complicate subclassing and, for example, plugin classes that are included via multiple inheritance by loading them as base classes. The namespace::clean pragma will remove all previously declared or 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. By unimporting via no you can tell namespace::clean to start collecting functions for the next use namespace::clean; specification.
Source Files
(show merged sources derived from linked package)
Filename | Size | Changed | Actions |
---|---|---|---|
_link | 0000000128128 Bytes | 1487273205about 1 year ago | ![]() |
cpanspec.yml | 0000000547547 Bytes | 1444469882over 2 years ago | ![]() |
namespace-clean-0.27.tar.gz | 000001780117.4 KB | 1463993856almost 2 years ago | ![]() |
perl-namespace-clean.changes | 00000055115.38 KB | 1464009015almost 2 years ago | ![]() |
perl-namespace-clean.spec | 00000018621.82 KB | 1464009015almost 2 years ago | ![]() |