NAME
namespace::allclean - Avoid imports all subroutines into your namespace
SYNOPSIS
package Foo;
use namespace::allclean;
sub bar { }
# later on:
Foo->bar; # will fail. `bar` got cleaned after compilation.
DESCRIPTION
namespace::allclean
will remove all subroutines 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 intended to be used when defining the interface.
LICENSE
Copyright (C) kfly8.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
AUTHOR
kfly8 <kfly8@cpan.org>