1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
Source: libtie-dxhash-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Ivan Kohler <ivan-debian@420.am>,
Xavier Guimard <x.guimard@free.fr>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 8),
libmodule-build-perl
Build-Depends-Indep: libtest-distribution-perl,
libtest-pod-perl,
libtest-pod-coverage-perl,
perl
Standards-Version: 3.9.4
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libtie-dxhash-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libtie-dxhash-perl.git
Homepage: https://metacpan.org/release/Tie-DxHash
Package: libtie-dxhash-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends}
Description: Perl module that keeps insertion order in hash
Tie::DxHash implements a hash which preserves insertion order and allows
duplicate keys.
.
Tie::DxHash works by storing the hash data in an array of hash references
(containing the key/value pairs). This preserves insertion order. A
separate set of iterators (one per distinct key) keeps track of the last
retrieved value for a given key, thus allowing the successive retrieval of
multiple values for the same key to work as expected.
.
Tie::DxHash was originally written to facilitate the use of more complex
mod_rewrite rules in Apache configuration files written with Perl Sections.
|