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-bp154.1.19 RPM for noarch

From OpenSuSE Leap 15.4 for noarch

Name: perl-Tie-Hash-Method Distribution: SUSE Linux Enterprise 15 SP4
Version: 0.02 Vendor: openSUSE
Release: bp154.1.19 Build date: Mon May 9 11:15:14 2022
Group: Development/Libraries/Perl Build host: sheep86
Size: 11721 Source RPM: perl-Tie-Hash-Method-0.02-bp154.1.19.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.26.1/Tie
/usr/lib/perl5/vendor_perl/5.26.1/Tie/Hash
/usr/lib/perl5/vendor_perl/5.26.1/Tie/Hash/Method.pm
/usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi
/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, Tue Apr 9 17:06:41 2024