Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37489594
en ru br
ALT Linux repos
S:0.06-alt2.1
5.0: 0.06-alt2
4.1: 0.06-alt1

Group :: Development/Perl
RPM: perl-Hash-MultiKey

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Current version: 0.06-alt2.1
Build date: 22 november 2010, 18:32 ( 700.2 weeks ago )
Size: 10.89 Kb

Home page:   http://www.cpan.org

License: Artistic
Summary: hashes whose keys can be multiple
Description:

Hash::MultiKey provides hashes that accept arrayrefs of strings as keys.

Two multi-keys are regarded as being equal if their *contents* are
equal, there is no need to use the same reference to refer to the same
hash entry:

   $hmk{['foo', 'bar', 'baz']} = 1;
   exists $hmk{['foo', 'bar', 'baz']}; # different arrayref, but true

A given hash can have multi-keys of different lengths:

   $hmk{['foo']}               = 1; # length 1
   $hmk{['foo', 'bar', 'baz']} = 3; # length 3, no problem

In addition, multi-keys cannot be empty:

   $hmk{[]} = 1; # ERROR

The next sections document how hash-related operations work in a
multi-key hash. Some parts have been copied from standard documentation,
since everything has standard semantics.

Current maintainer: Igor Vlasenko

List of contributors

List of rpms provided by this srpm:

  • perl-Hash-MultiKey
ACL:
     
    design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
    current maintainer: Michael Shigorin