Devel::InnerPackage - find all the inner packages of a package


Module-Pluggable documentation  | view source Contained in the Module-Pluggable distribution.

Index


NAME

Top

Devel::InnerPackage - find all the inner packages of a package

SYNOPSIS

Top

    use Foo::Bar;
    use Devel::InnerPackage qw(list_packages);

    my @inner_packages = list_packages('Foo::Bar');




DESCRIPTION

Top

Given a file like this



    package 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

METHODS

Top

list_packages <package name>

Return a list of all inner packages of that package.

AUTHOR

Top

Simon Wistow <simon@thegestalt.org>

COPYING

Top

Copyright, 2005 Simon Wistow

Distributed under the same terms as Perl itself.

BUGS

Top

None known.


Module-Pluggable documentation  | view source Contained in the Module-Pluggable distribution.