README 571 B

12345678910111213
  1. When you import a function into a Perl package, it will naturally also
  2. be available as a method.
  3. The namespace::autoclean pragma will remove all imported symbols at the
  4. end of the current package's compile cycle. Functions called in the
  5. package itself will still be bound by their name, but they won't show
  6. up as methods on your class or instances.
  7. This module is very similar to namespace::clean, except it will clean
  8. all imported functions, no matter if you imported them before or after
  9. you used the pragma. It will also not touch anything that looks like a
  10. method.