How to Install and Uninstall perl-Array-Unique Package on openSuSE Tumbleweed

Last updated: October 05,2024

1. Install "perl-Array-Unique" package

Here is a brief guide to show you how to install perl-Array-Unique on openSuSE Tumbleweed

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

2. Uninstall "perl-Array-Unique" package

Please follow the step by step instructions below to uninstall perl-Array-Unique on openSuSE Tumbleweed:

$ sudo zypper remove perl-Array-Unique

3. Information about the perl-Array-Unique package on openSuSE Tumbleweed

Information for package perl-Array-Unique:
------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Array-Unique
Version : 0.09-1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 29.8 KiB
Installed : No
Status : not installed
Source package : perl-Array-Unique-0.09-1.4.src
Upstream URL : https://metacpan.org/release/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.