File: control

package info (click to toggle)
libhash-storediterator-perl 0.008-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 304 kB
  • sloc: perl: 143; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 1,495 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
23
24
25
26
27
28
29
30
31
32
33
Source: libhash-storediterator-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Xavier Guimard <yadd@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13),
               libmodule-build-perl,
               libtest2-suite-perl,
               libtest2-suite-perl | libtest2-workflow-perl,
               perl-xs-dev,
               perl:native,
               perl | libextutils-parsexs-perl (>= 3.15)
Standards-Version: 4.1.3
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libhash-storediterator-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libhash-storediterator-perl.git
Homepage: https://metacpan.org/release/Hash-StoredIterator

Package: libhash-storediterator-perl
Architecture: any
Depends: ${misc:Depends},
         ${perl:Depends},
         ${shlibs:Depends}
Description: Perl module for accessing a hashes internal iterator
 Hash::StoredIterator gives access to get, set, and init the iterator inside
 a hash. This allows one to store the current iterator, use
 each/keys/values/etc, and then restore the iterator, this helps to ensure
 that nobody interacts badly with other users of the iterator.
 .
 In perl all hashes have an internal iterator. This iterator is used by the
 each() function, as well as by keys() and values(). Because these all share
 use of the same iterator, they tend to interact badly with eachother when
 nested.