You can check if it's in a specific package, but
- I don't know anything that checks if a function exists in any package (so I coded up a solution below).
- I don't know anything that checks if a function is in a module (and that's impossible to do correctly given Perl's dynamic nature).
- I don't know anything that checks if a function is in any module on the machine (and that's impossible to do correctly given Perl's dynamic nature).
In the current package:
UNIVERSAL::can(__PACKAGE__, 'myfunc')
In a specific package:
UNIVERSAL::can($pkg, 'myfunc')
In any package:
sub check_for_func {
my ($func_name) = @_;
my @pkgs_with_func;
my $helper; # Don't combine this line with the assignement.
$helper = sub {
my ($pkg_name) = @_;
my $pkg = do { no strict 'refs'; \%{$pkg_name.'::'} };
push(@pkgs_with_func, $pkg_name)
if $pkg->{$func_name}
&& *{$pkg->{$func_name}}{CODE};
my $pkg_name_ = ($pkg_name eq 'main'
? ''
: $pkg_name.'::'
);
/^(.*)::$/ && $1 ne 'main' && &$helper($pkg_name_.$1)
foreach (keys(%$pkg));
};
&$helper('main');
return @pkgs_with_func;
}
print(join(', ', check_for_func('test')), $/);
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.