Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

perl-Tie-Hash-Method-0.02-1.27 RPM for noarch

From OpenSuSE Ports Tumbleweed for noarch

Name: perl-Tie-Hash-Method Distribution: openSUSE:Factory:zSystems
Version: 0.02 Vendor: openSUSE
Release: 1.27 Build date: Mon Aug 7 18:52:09 2023
Group: Development/Libraries/Perl Build host: s390zp27
Size: 11455 Source RPM: perl-Tie-Hash-Method-0.02-1.27.src.rpm
Packager: https://bugs.opensuse.org
Url: http://search.cpan.org/dist/Tie-Hash-Method/
Summary: Tied hash with specific methods overriden by callbacks
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.

Provides

Requires

License

GPL-1.0+ or Artistic-1.0

Changelog

* Mon Nov 27 2017 coolo@suse.com
  - initial package 0.02
    * created by cpanspec 1.78.08

Files

/usr/lib/perl5/vendor_perl/5.38.0/Tie
/usr/lib/perl5/vendor_perl/5.38.0/Tie/Hash
/usr/lib/perl5/vendor_perl/5.38.0/Tie/Hash/Method.pm
/usr/share/doc/packages/perl-Tie-Hash-Method
/usr/share/doc/packages/perl-Tie-Hash-Method/Changes
/usr/share/doc/packages/perl-Tie-Hash-Method/README
/usr/share/man/man3/Tie::Hash::Method.3pm.gz


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:39:58 2024