libarray-group-perl 4.1-1 source package in Ubuntu

Changelog

libarray-group-perl (4.1-1) unstable; urgency=low


  * Initial Release (Closes: #731044)

 -- Radu-Bogdan Croitoru <email address hidden>  Sun, 09 Feb 2014 23:42:34 +0200

Upload details

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

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Utopic: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libarray-group-perl_4.1-1.dsc 2.1 KiB fc7ef975e193d65f025788873b8ae25d7f4037bdecbf51456d9f235d5f5a2b95
libarray-group-perl_4.1.orig.tar.gz 4.4 KiB bbda537f42e12d21dfc8d5ddf932718a319556362d7d7c4e7a2ba163d0e7c460
libarray-group-perl_4.1-1.debian.tar.xz 1.6 KiB a89af1d4d5d25b5e66718e331ab7f831972f20cfceaf84a51979d22fcad430ff

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.