- or download this
sub AUOTLOAD
{
my $fn = something_clever_returning_fn_reference;
goto &$fn;
}
- or download this
sub AUOTLOAD
{
...
my $m = something_clever_returning_method_name();
$self->$m(@_);
}
- or download this
sub AUTOLOAD
{
...
die "Can't call $m on $_[0]" unless defined($sub);
goto &$sub;
}