How to Install and Uninstall perl-List-UtilsBy Package on openSUSE Leap

Last updated: May 23,2024

1. Install "perl-List-UtilsBy" package

Here is a brief guide to show you how to install perl-List-UtilsBy on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-List-UtilsBy

2. Uninstall "perl-List-UtilsBy" package

Learn how to uninstall perl-List-UtilsBy on openSUSE Leap:

$ sudo zypper remove perl-List-UtilsBy

3. Information about the perl-List-UtilsBy package on openSUSE Leap

Information for package perl-List-UtilsBy:
------------------------------------------
Repository : Main Repository
Name : perl-List-UtilsBy
Version : 0.10-1.22
Arch : noarch
Vendor : SUSE LLC
Installed Size : 51.6 KiB
Installed : No
Status : not installed
Source package : perl-List-UtilsBy-0.10-1.22.src
Upstream URL : http://search.cpan.org/dist/List-UtilsBy/
Summary : Higher-Order List Utility Functions
Description :
This module provides a number of list utility functions, all of which take
an initial code block to control their behaviour. They are variations on
similar core perl or 'List::Util' functions of similar names, but which use
the block to control their behaviour. For example, the core Perl function
'sort' takes a list of values and returns them, sorted into order by their
string value. The 'sort_by' function sorts them according to the string
value returned by the extra function, when given each value.
my @names_sorted = sort @names;
my @people_sorted = sort_by { $_->name } @people;