the more subs I import the harder it becomes to keep track of where they are all from
You could import the sub to a different name:
*vlp_func = \&Very::Long::Package::func;
Update: The following is a means of doing the above with a large number of functions:
use warnings;
use strict;
sub import_func {
my ($src_name, $dst_name) = @_;
if (not defined $dst_name) {
$dst_name = (split(/::/, $src_name))[-1];
}
if (index($dst_name, '::') < 0) {
$dst_name = caller() . '::' . $dst_name;
}
my $src_func_ref = do { no strict 'refs'; \&$src_name };
my $dst_glob_ref = do { no strict 'refs'; \*$dst_name };
*$dst_glob_ref = $src_func_ref;
}
sub Foo::Bar::func { print("Hello World!\n"); }
import_func('Foo::Bar::func', 'fb_func');
fb_func(); # Calls Foo::Bar::func
To import multiple functions at once, you can use
import_func("Foo::Bar::$_", "fb_$_")
foreach qw( func moo bla );
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|