Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: multiple modules

by BrowserUk (Patriarch)
on Oct 28, 2005 at 04:51 UTC ( [id://503554]=note: print w/replies, xml ) Need Help??


in reply to multiple modules

You could write your own:

package all; sub import { shift; my $caller = caller(); my $code = "package $caller; use " . join '; use ', @_; eval $code; } 1;

And then use it like this:

use all qw[strict warnings Time::HiRes Data::Dumper List::Util];

Unfortunately, there is no way to specify an import list for each module, so you get everything that they export, which could be nothing at all for some modules, or much more than you wanted, or just not what you need. Eg. No way to tell List::Util that you want to use sum()

Fixing that is left as an exercise for the reader :)


Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
Lingua non convalesco, consenesco et abolesco. -- Rule 1 has a caveat! -- Who broke the cabal?
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

Replies are listed 'Best First'.
Re^2: multiple modules
by xdg (Monsignor) on Oct 28, 2005 at 08:34 UTC

    That doesn't work for strict and warnings, which wind up applying only within the eval. I discuss how to make that and the import lists work in Bundling commonly-used modules into a toolset.

    package all; use base 'ToolSet'; ToolSet->set_strict(1); ToolSet->set_warnings(1); ToolSet->export( 'Time::HiRes' => undef, 'Data::Dumper' => undef, 'List::Util' => 'sum', ); 1;

    -xdg

    Code written by xdg and posted on PerlMonks is public domain. It is provided as is with no warranties, express or implied, of any kind. Posted code may not have been tested. Use of posted code is at your own risk.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://503554]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (6)
As of 2024-03-28 22:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found