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

Last updated: May 17,2024

1. Install "perl-Tie-Hash-Method" package

Please follow the guidance below to install perl-Tie-Hash-Method on openSuSE Tumbleweed

$ sudo zypper refresh $ sudo zypper install perl-Tie-Hash-Method

2. Uninstall "perl-Tie-Hash-Method" package

This tutorial shows how to uninstall perl-Tie-Hash-Method on openSuSE Tumbleweed:

$ sudo zypper remove perl-Tie-Hash-Method

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

Information for package perl-Tie-Hash-Method:
---------------------------------------------
Repository : openSUSE-Tumbleweed-Oss
Name : perl-Tie-Hash-Method
Version : 0.02-1.24
Arch : noarch
Vendor : openSUSE
Installed Size : 11.2 KiB
Installed : No
Status : not installed
Source package : perl-Tie-Hash-Method-0.02-1.24.src
Upstream URL : http://search.cpan.org/dist/Tie-Hash-Method/
Summary : Tied hash with specific methods overriden by callbacks
Description :
Tie::Hash::Method provides a way to create a tied hash with specific
overriden behaviour without having to create a new class to do it. A tied
hash with no methods overriden is functionally equivalent to a normal hash.
Each method in a standard tie can be overriden by providing a callback to
the tie call. So for instance if you wanted a tied hash that changed 'foo'
into 'bar' on store you could say:
tie my %hash, 'Tie::Hash::Method',
STORE => sub {
(my $v=pop)=~s/foo/bar/g if defined $_[2];
return $_[0]->base_hash->{$_[1]}=$v;
};
The callback is called with exactly the same arguments as the tie itself,
in particular the tied object is always passed as the first argument.
The tied object is itself an array, which contains a second hash in the
HASH slot (index 0) which is used to perform the default operations.
The callbacks available are in a hash keyed by name in the METHOD slot of
the array (index 1).
If your code needs to store extra data in the object it should be stored in
the PRIVATE slot of the object (index 2). No future release of this module
will ever use or alter anything in that slot.
The arguments passed to the tie constructor will be seperated by the case
of their keys. The ones with all capitals will be stored in the METHOD
hash, and the rest will be stored in the PRIVATE hash.