in reply to Getting methods existing in a Perl Object!
But as already mentioned in this thread, this does nothing to discern between public and private methods, though were you to adopt the convention of naming private methods with a leading underbar, or if you managed to actually document with pod, EVERY public method, then your string manipulations could be massaged to dissect perldoc instead, and get an accurate list.grep ^sub Module.pm | sed "s/^sub //" | sed "s/{.*$//"
-- Hugh
|
|---|