Help for this page

Select Code to Download


  1. or download this
    sub method {
        my $self= shift(@_);
    ...
        $self->{B}[$i]= shift(@_)   if  @_;
        return $old;
    }
    
  2. or download this
    sub method {
        my $self= shift(@_);
    ...
          if  @_;
        return $old;
    }
    
  3. or download this
    {
        my $usage;
    ...
            return $old;
        }
    }