How to Install and Uninstall perl-Array-Unique.noarch Package on Fedora 36

Last updated: May 19,2024

1. Install "perl-Array-Unique.noarch" package

This guide covers the steps necessary to install perl-Array-Unique.noarch on Fedora 36

$ sudo dnf update $ sudo dnf install perl-Array-Unique.noarch

2. Uninstall "perl-Array-Unique.noarch" package

This guide let you learn how to uninstall perl-Array-Unique.noarch on Fedora 36:

$ sudo dnf remove perl-Array-Unique.noarch $ sudo dnf autoremove

3. Information about the perl-Array-Unique.noarch package on Fedora 36

Last metadata expiration check: 0:42:53 ago on Thu Sep 8 08:04:50 2022.
Available Packages
Name : perl-Array-Unique
Version : 0.08
Release : 22.fc36
Architecture : noarch
Size : 17 k
Source : perl-Array-Unique-0.08-22.fc36.src.rpm
Repository : fedora
Summary : Tie-able array that allows only unique values
URL : https://metacpan.org/release/Array-Unique
License : GPL+ or Artistic
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.