Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: Listing the functions of a package / methods of an object

by friedo (Prior)
on Jul 15, 2008 at 14:44 UTC ( [id://697733]=note: print w/replies, xml ) Need Help??


in reply to Listing the functions of a package / methods of an object

You don't have to use eval to get the keys of the package's symbol table, just do
my @subs; { no strict 'refs'; my $st = $class . '::'; @subs = keys %$st; }

Unfortunately, there's no way to differentiate between methods and regular subroutines, and as moritz pointed out, that won't find inherited methods which exist in different packages. Moose's metaclass facilities are really great, but naturally they only work for objects that are built with Moose.

There is Class::Inspector, which has a reasonably good function to search a class's @ISA tree and get a list of every possible inherited method.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-25 05:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found