File: control

package info (click to toggle)
libtie-dxhash-perl 0.93-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny, sarge, squeeze, wheezy
  • size: 84 kB
  • ctags: 18
  • sloc: perl: 89; makefile: 50
file content (22 lines) | stat: -rw-r--r-- 950 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Source: libtie-dxhash-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 3.0.5), perl (>= 5.8.0-7)
Maintainer: Ivan Kohler <ivan-debian@420.am>
Standards-Version: 3.5.1

Package: libtie-dxhash-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}
Description: Tied hash which keeps insertion order and allows duplicate keys
 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.