Package perl-Hash-MultiKey: Information

    Source package: perl-Hash-MultiKey
    Version: 0.06-alt2.1
    Build time:  Nov 24, 2010, 09:05 AM
    Category: Development/Perl
    Report package bug
    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.

    List of rpms provided by this srpm:
    perl-Hash-MultiKey (noarch)

    Maintainer: Igor Vlasenko

    List of contributors:
    Igor Vlasenko

    ACL:
    @qa_p7

      1. perl-devel

    Last changed


    Nov. 22, 2010 Igor Vlasenko 0.06-alt2.1
    - repair after perl 5.12 upgrade using girar-nmu
    Sept. 3, 2008 Igor Vlasenko 0.06-alt2
    - removed perl dir ownership
    Aug. 24, 2007 Igor Vlasenko 0.06-alt1
    - first build for ALT Linux Sisyphus