How to Install and Uninstall perl-Method-Signatures Package on openSUSE Leap

Last updated: April 30,2024

1. Install "perl-Method-Signatures" package

Please follow the instructions below to install perl-Method-Signatures on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Method-Signatures

2. Uninstall "perl-Method-Signatures" package

Please follow the guidelines below to uninstall perl-Method-Signatures on openSUSE Leap:

$ sudo zypper remove perl-Method-Signatures

3. Information about the perl-Method-Signatures package on openSUSE Leap

Information for package perl-Method-Signatures:
-----------------------------------------------
Repository : Main Repository
Name : perl-Method-Signatures
Version : 20170211-bp155.2.8
Arch : noarch
Vendor : openSUSE
Installed Size : 133.2 KiB
Installed : No
Status : not installed
Source package : perl-Method-Signatures-20170211-bp155.2.8.src
Upstream URL : http://search.cpan.org/dist/Method-Signatures/
Summary : Method and Function Declarations with Signatures and No Source Filter
Description :
Provides two new keywords, 'func' and 'method', so that you can write
subroutines with signatures instead of having to spell out 'my $self =
shift; my($thing) = @_'
'func' is like 'sub' but takes a signature where the prototype would
normally go. This takes the place of 'my($foo, $bar) = @_' and does a whole
lot more.
'method' is like 'func' but specifically for making methods. It will
automatically provide the invocant as '$self' (by default). No more 'my
$self = shift'.