http://qs1969.pair.com?node_id=157031


in reply to Private Class Methods

Yet another way to do it is with the use of appropriately scoped anonymous subs...

my $private_method = sub { # ... do stuff only class things should know }; $private_method->();

    --k.