How to Install and Uninstall perl-Clone-PP Package on openSUSE Leap

Last updated: April 30,2024

1. Install "perl-Clone-PP" package

Please follow the guidelines below to install perl-Clone-PP on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Clone-PP

2. Uninstall "perl-Clone-PP" package

Please follow the steps below to uninstall perl-Clone-PP on openSUSE Leap:

$ sudo zypper remove perl-Clone-PP

3. Information about the perl-Clone-PP package on openSUSE Leap

Information for package perl-Clone-PP:
--------------------------------------
Repository : Main Repository
Name : perl-Clone-PP
Version : 1.07-bp155.2.10
Arch : noarch
Vendor : openSUSE
Installed Size : 12.9 KiB
Installed : No
Status : not installed
Source package : perl-Clone-PP-1.07-bp155.2.10.src
Upstream URL : http://search.cpan.org/dist/Clone-PP/
Summary : Recursively copy Perl datatypes
Description :
This module provides a general-purpose clone function to make deep copies
of Perl data structures. It calls itself recursively to copy nested hash,
array, scalar and reference types, including tied variables and objects.
The clone() function takes a scalar argument to copy. To duplicate arrays
or hashes, pass them in by reference:
my $copy = clone(\@array); my @copy = @{ clone(\@array) };
my $copy = clone(\%hash); my %copy = %;
The clone() function also accepts an optional second parameter that can be
used to limit the depth of the copy. If you pass a limit of 0, clone will
return the same value you supplied; for a limit of 1, a shallow copy is
constructed; for a limit of 2, two layers of copying are done, and so on.
my $shallow_copy = clone( $item, 1 );
To allow objects to intervene in the way they are copied, the clone()
function checks for a couple of optional methods. If an object provides a
method named 'clone_self', it is called and the result returned without
further processing. Alternately, if an object provides a method named
'clone_init', it is called on the copied object before it is returned.