|
NAMEDevel::InnerPackage - find all the inner packages of a packageSYNOPSISuse Foo::Bar; use Devel::InnerPackage qw(list_packages); my @inner_packages = list_packages('Foo::Bar'); DESCRIPTIONGiven a file like thispackage Foo::Bar; sub foo {} package Foo::Bar::Quux; sub quux {} package Foo::Bar::Quirka; sub quirka {} 1; then list_packages('Foo::Bar'); will return Foo::Bar::Quux Foo::Bar::Quirka METHODSlist_packages <package name>Return a list of all inner packages of that package.AUTHORSimon Wistow <simon@thegestalt.org>COPYINGCopyright, 2005 Simon WistowDistributed under the same terms as Perl itself. BUGSNone known.
Visit the GSP FreeBSD Man Page Interface. |