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
|
Source: libsort-key-top-perl
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.org>
Uploaders: Laszlo Kajan <lkajan@rostlab.org>,
Andreas Tille <tille@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.2.1
Vcs-Browser: https://salsa.debian.org/med-team/libsort-key-top-perl
Vcs-Git: https://salsa.debian.org/med-team/libsort-key-top-perl.git
Homepage: https://metacpan.org/release/Sort-Key-Top
Package: libsort-key-top-perl
Architecture: any
Depends: ${perl:Depends},
${shlibs:Depends},
${misc:Depends}
Description: Perl module to select and sort top n elements of a list
The functions available from this module select the top n elements from a
list using several common orderings and custom key extraction procedures.
.
They are all variations around 'keytopsort { CALC_KEY($_) } $n => @data;'.
.
In array context, this function calculates the ordering key for every element
in @data using the expression inside the block. Then it selects and orders
the $n elements with the lower keys when compared lexicographically.
.
In scalar context, the value returned by the functions on this module is the
cutoff value allowing to select nth element from the array.
|