Help for this page

Select Code to Download


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