Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use UtilityClass;
    ...
        my $self = shift;
        $self->UtilityClass::some_method(@_);
    }
    
  2. or download this
    package Foo;
    use UtilityClass;
    ...
    sub some_method {
        goto &{ $_[0]->helper_class->can('some_method') };
    }