libarray-group-perl 4.2-3 source package in Ubuntu

Changelog

libarray-group-perl (4.2-3) unstable; urgency=medium

  [ Debian Janitor ]
  * Apply multi-arch hints. + libarray-group-perl: Add Multi-Arch: foreign.

 -- Jelmer Vernooij <email address hidden>  Thu, 13 Oct 2022 20:53:22 +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
libarray-group-perl_4.2-3.dsc 2.0 KiB dbb7f1830aa2bcad8a074467f4b31c8cb6f46f2d18903754635fb3dfed9f5dbe
libarray-group-perl_4.2.orig.tar.gz 4.2 KiB 393053cf98f9be9132c9739175b739f426ee81f4dd3e7f8470cbc5ff9e5a1681
libarray-group-perl_4.2-3.debian.tar.xz 2.1 KiB 71116e7a2aa75cf1945614877be5f4093e2f1cbfab453174b725b142689f11c2

Available diffs

No changes file available.

Binary packages built by this source

libarray-group-perl: module that converts an array into array of arrayrefs of uniform size N

 Array::Group is a module for converting a list into a list of arrayrefs
 of the same size. It exports two methods:
 .
  The ngroup method reformats a list into a list of arrayrefs. It is often
  used for formatting data into HTML tables, amongst other things.
 .
  dissect() returns a list of lists where the first element of each sublist
  will be one of the first elements of the source list, and the last element
  will be one of the last. This behaviour is much more useful when the input
  list is sorted.
 .
 The key difference between the two methods is that dissect() takes elements
 from the start of the list provided and pushes them onto each of the
 subarrays sequentially, rather than simply dividing the list into discrete
 chunks.