Help for this page
sub quick_method { return shift->SUPER::some_other_method(@_); }
sub quick_method { my $self = shift; my @args = @_; return $self->SUPER::some_other_method(@args); }