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 35 36
|
Source: libarray-iterator-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Dominique Dumont <dod@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libtest-compile-perl <!nocheck>,
libtest-exception-perl <!nocheck>,
libtest-most-perl <!nocheck>,
libtest-needs-perl <!nocheck>,
libtest-simple-perl <!nocheck>,
perl
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libarray-iterator-perl.git
Homepage: https://metacpan.org/release/Array-Iterator
Rules-Requires-Root: no
Package: libarray-iterator-perl
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
${perl:Depends}
Description: simple class to provide iterators over Perl arrays
Array::Iterator Perl module provides a very simple iterator
interface. It is uni-directional and can only be used once. It
provides no means of reversing or resetting the iterator. It is not
recommended to alter the array during iteration, however no attempt is
made to enforce this. This class only intends to provide a clear and simple
means of generic iteration, nothing more (yet).
.
This package also provides:
* Array::Iterator::BiDirectional to allow forward and backward iteration
* Array::Iterator::Circular to allow circular iteration
* Array::Iterator::Reusable to allow reuse of iterators
|