Help for this page

Select Code to Download


  1. or download this
    my $foo = Foo->new;
    Foo::frequently_called_method($foo, @args);
    
  2. or download this
    my $foo = Foo->new;
    my $method = Foo->can('frequently_called_method');
    $method->($foo, @args);