How to Install and Uninstall perl-Hash-Merge Package on openSuSE Tumbleweed

Last updated: May 19,2024

1. Install "perl-Hash-Merge" package

This guide let you learn how to install perl-Hash-Merge on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Hash-Merge

2. Uninstall "perl-Hash-Merge" package

Please follow the step by step instructions below to uninstall perl-Hash-Merge on openSuSE Tumbleweed:

$ sudo zypper remove perl-Hash-Merge

3. Information about the perl-Hash-Merge package on openSuSE Tumbleweed

Information for package perl-Hash-Merge:
----------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Hash-Merge
Version : 0.302-1.18
Arch : noarch
Vendor : openSUSE
Installed Size : 34.2 KiB
Installed : No
Status : not installed
Source package : perl-Hash-Merge-0.302-1.18.src
Upstream URL : https://metacpan.org/release/Hash-Merge
Summary : Merges arbitrarily deep hashes into a single hash
Description :
Hash::Merge merges two arbitrarily deep hashes into a single hash. That is,
at any level, it will add non-conflicting key-value pairs from one hash to
the other, and follows a set of specific rules when there are key value
conflicts (as outlined below). The hash is followed recursively, so that
deeply nested hashes that are at the same level will be merged when the
parent hashes are merged. *Please note that self-referencing hashes, or
recursive references, are not handled well by this method.*
Values in hashes are considered to be either ARRAY references, HASH
references, or otherwise are treated as SCALARs. By default, the data
passed to the merge function will be cloned using the Clone module;
however, if necessary, this behavior can be changed to use as many of the
original values as possible. (See 'set_clone_behavior').