How to Install and Uninstall perl-Array-Unique Package on openSUSE Leap

Last updated: May 19,2024

1. Install "perl-Array-Unique" package

Please follow the guidance below to install perl-Array-Unique on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Array-Unique

2. Uninstall "perl-Array-Unique" package

This is a short guide on how to uninstall perl-Array-Unique on openSUSE Leap:

$ sudo zypper remove perl-Array-Unique

3. Information about the perl-Array-Unique package on openSUSE Leap

Information for package perl-Array-Unique:
------------------------------------------
Repository : Main Repository
Name : perl-Array-Unique
Version : 0.08-bp155.2.9
Arch : noarch
Vendor : openSUSE
Installed Size : 20.0 KiB
Installed : No
Status : not installed
Source package : perl-Array-Unique-0.08-bp155.2.9.src
Upstream URL : http://search.cpan.org/dist/Array-Unique/
Summary : Tie-able array that allows only unique values
Description :
This package lets you create an array which will allow only one occurrence
of any value.
In other words no matter how many times you put in 42 it will keep only the
first occurrence and the rest will be dropped.
You use the module via tie and once you tied your array to this module it
will behave correctly.
Uniqueness is checked with the 'eq' operator so among other things it is
case sensitive.
As a side effect the module does not allow undef as a value in the array.