Help for this page

Select Code to Download


  1. or download this
    my $mref=$self->get_mref(...); # Calculate $mref
    $self->$mref(...); # use it to dispatch
    
  2. or download this
    $self->&{ $self->get_mref(...) }()
    
  3. or download this
    $self->($self->get_mref(...))()