in reply to Re: Private Class Methods
in thread Private Class Methods

++ on #1.

But #2 will fail on "indirect" private calls, i.e. where class A implements

sub public_method { # do something $self->_my_private_method(); # do something else }
and then public_method is invoked on a derived object. Bad bad.
--
Mike