Source: libhash-storediterator-perl Maintainer: Debian Perl Group Uploaders: Xavier Guimard Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional Build-Depends: debhelper (>= 10), libmodule-build-perl (>= 0.420000), libtest2-suite-perl, libtest2-suite-perl (>= 0.000087) | libtest2-workflow-perl, perl, perl (>= 5.15.8) | libextutils-parsexs-perl (>= 3.15) Standards-Version: 4.1.2 Vcs-Browser: https://anonscm.debian.org/cgit/pkg-perl/packages/libhash-storediterator-perl.git Vcs-Git: https://anonscm.debian.org/git/pkg-perl/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.