Help for this page

Select Code to Download


  1. or download this
      package Foo;
                                                                          
    +                                                                     
    +                 
      sub new {
    ...
          my ($self, @args) = @_;
          return map { ++$_ } @args;
      }
    
  2. or download this
      # in package Foo
      sub wonk {
          my $self = shift;
          _fiddle($self, @_);
      }
    
  3. or download this
                                                                          
    +                                                             
      package Bar;
      use Foo;
    ...
          my $self = shift;
          $self->{_foo}->wonk(@_); # delegation!
      }