Imagine a library of subs that are 'require'd in a bnch of files.
At the moment they are all global (ie in main::), but I want to move them to a namespace (say Util::) to avoide clashes etc.
But there's a lot of code that uses these and I don't want to have to touch every file, possibly breaking it.
So I want to define all the subs in a namespace, but for the next few months have the subs aliased to main:: as well. One at a time that's easy, but I would like to pull all the sub names from the package table and alias them all in one hit (or a loop).
I'm sure it's simple, I'm just not quite sure how to achieve it.
Update: I am thinking something like this:
sub foo::bar {print "bar\n";}
%main:: = (%main::, %foo::);
bar();
but that doesn't work... I'd also like to use * globs since they would be more efficient
Update 2:This works:
sub foo::bar {print "bar\n";}
foreach $name (keys %foo::) {
$main::{$name} = $foo::{$name};
}
bar();
But i'm sure it's not efficient for a lot of symbols...
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.