1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Source: liblist-rotation-cycle-perl
Section: perl
Priority: optional
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Radu-Bogdan Croitoru <croitoruradubogdan@gmail.com>
Build-Depends: debhelper (>= 9)
Build-Depends-Indep: libtest-pod-coverage-perl, libtest-pod-perl, perl
Standards-Version: 3.9.5
Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/liblist-rotation-cycle-perl.git
Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/liblist-rotation-cycle-perl.git
Homepage: https://metacpan.org/release/List-Rotation-Cycle
Package: liblist-rotation-cycle-perl
Architecture: all
Depends: ${misc:Depends}, ${perl:Depends}
Description: module that cycles through a list of values
Use List::Rotation::Cycle to loop through a list of values. Once you get to
the end of the list, you go back to the beginning.
.
List::Rotation::Cycle is implemented as a Singleton Pattern. You always just
get 1 (the very same) Cycle object even if you use the new method several
times. This is done by using Memoize on the new method. It returns the same
object for every use of new that comes with the same List of parameters.
|