in reply to use all modules in a package

There is no built-in support for this kind of thing. If you typically need this functionality for some package, the package should provide you with it (but I guess some don't).

For example, use Template loads the basic modules in the Template::Toolkit distribution.

If the module you're using doesn't provide something like this, you'll have to write it yourself, and you have to specify all the modules explicitly.

Replies are listed 'Best First'.
Re^2: use all modules in a package
by jammin (Novice) on Apr 28, 2005 at 12:06 UTC
    ok great thanks I'll write one.