How to Install and Uninstall perl-Tie-ToObject Package on openSUSE Leap

Last updated: April 29,2024

1. Install "perl-Tie-ToObject" package

Please follow the guidance below to install perl-Tie-ToObject on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Tie-ToObject

2. Uninstall "perl-Tie-ToObject" package

This guide let you learn how to uninstall perl-Tie-ToObject on openSUSE Leap:

$ sudo zypper remove perl-Tie-ToObject

3. Information about the perl-Tie-ToObject package on openSUSE Leap

Information for package perl-Tie-ToObject:
------------------------------------------
Repository : Main Repository
Name : perl-Tie-ToObject
Version : 0.03-bp155.2.12
Arch : noarch
Vendor : openSUSE
Installed Size : 3.4 KiB
Installed : No
Status : not installed
Source package : perl-Tie-ToObject-0.03-bp155.2.12.src
Upstream URL : http://search.cpan.org/dist/Tie-ToObject/
Summary : Tie to an existing object.
Description :
While the perldoc/tie manpage allows tying to an arbitrary object, the
class in question must support this in it's implementation of 'TIEHASH',
'TIEARRAY' or whatever.
This class provides a very tie constructor that simply returns the object
it was given as it's first argument.
This way side effects of calling '$object->TIEHASH' are avoided.
This is used in the Data::Visitor manpage in order to tie a variable to an
already existing object. This is also useful for cloning, when you want to
clone the internal state object instead of going through the tie interface
for that variable.