liblist-rotation-cycle-perl 1.009-3 source package in Ubuntu

Changelog

liblist-rotation-cycle-perl (1.009-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + liblist-rotation-cycle-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Sat, 15 Oct 2022 19:40:49 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
liblist-rotation-cycle-perl_1.009-3.dsc 2.2 KiB 831cac894b81e8d7d0a59a815029e56e7ec4199e59913d9ab8f20ff14b3feca2
liblist-rotation-cycle-perl_1.009.orig.tar.gz 4.5 KiB 103f9bb9e43b4c0396218b5c919258d28ef80b89074d96cd0d0240147b9f76f6
liblist-rotation-cycle-perl_1.009-3.debian.tar.xz 2.1 KiB 0d431cee3c8f38260f46fa06d26ec0a7259528c58b8ca9f13ab36c038f2a18c7

Available diffs

No changes file available.

Binary packages built by this source

liblist-rotation-cycle-perl: 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.