Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
        # we can use lexically scoped subs
        $self->$_private();
    };
    
  2. or download this
    package Foo;
    
    ...
        my $self = shift;
        $self->Foo::private::method { ... };
    };
    
  3. or download this
    sub Foo::MY::method { ... };
    
    ...
        my $self = shift;
        $self->MY::method();
    };
    
  4. or download this
    package MY;
    
    ...
        my $method = caller() . "::$AUTOLOAD";
        $self->$method(@_);
    };
    
  5. or download this
    sub MY::method { ... };
    
  6. or download this
    sub MyLongPackageName::MY::method { ... };
    
  7. or download this
    package MY;
    use strict;
    ...
    FILTER_ONLY code => sub { s/(\w+::)*MY::/${Imported_from}::MY::/gs };
    
    1;
    
  8. or download this
    package Foo;
    use MY;
    ...
    sub MY::greet_world {
        print "A new Bar has entered the world\n";
    };