The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "module:sort"

sort - perl pragma to control sort() behaviour River stage five • 11292 direct dependents • 32664 total dependents

Historically the "sort" pragma you can control the behaviour of the builtin "sort()" function. Prior to v5.28.0 there were two other options: use sort '_mergesort'; use sort '_qsort'; # or '_quicksort' If you try and specify either of these in v5.28+...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC

sort - perl pragma to control sort() behaviour River stage five • 11292 direct dependents • 32664 total dependents

Historically the "sort" pragma you can control the behaviour of the builtin "sort()" function. Prior to v5.28.0 there were two other options: use sort '_mergesort'; use sort '_qsort'; # or '_quicksort' If you try and specify either of these in v5.28+...

PEVANS/perl-5.38.2 - 29 Nov 2023 16:10:36 UTC

Sort::XS - a ( very ) fast XS sort alternative for one dimension list River stage zero No dependents

This module provides several common sort algorithms implemented as XS. Sort can only be used on one dimension list of integers or strings. It's goal is not to replace the internal sort subroutines, but to provide a better alternative in some specific...

ATOOMIC/Sort-XS-0.30 - 20 Jan 2012 19:20:06 UTC

PL::sort River stage zero No dependents

Implements polish sorting conventions, indepentent on current locales in effect, which are often bad....

STRZELEC/PL-sort-0.2 - 04 Jun 2013 14:33:16 UTC

Cz::Sort - Czech sort River stage zero No dependents

Implements czech sorting conventions, indepentent on current locales in effect, which are often bad. Does the four-pass sort. The idea and the base of the conversion table comes from Petr Olsak's program csr and the code is as compliant with CSN 97 6...

JANPAZ/Cstools-3.44 - 13 Apr 2019 06:41:21 UTC

No::Sort - Norwegian sorting River stage one • 1 direct dependent • 2 total dependents

This module provde the function no_sort() which sort a ISO-8859/1 encoded string according to Norwegian practice. The routine works like the normal perl sort routine, but the optional first argument is special. It can either be a reference to the str...

GAAS/Norge-1.08 - 21 May 2004 10:53:02 UTC

Sub::Sort - Dummy module to catch Sort::Sub typo River stage two • 23 direct dependents • 96 total dependents

PERLANCAR/Sort-Sub-0.120 - 24 May 2020 18:12:50 UTC

PYX::Sort - Processing PYX data or file and sort element attributes. River stage one • 1 direct dependent • 1 total dependent

SKIM/PYX-Sort-0.05 - 19 Oct 2023 08:52:31 UTC

Sort::SQL - manipulate SQL sort strings River stage two • 9 direct dependents • 27 total dependents

Sort::SQL is so simple it almost doesn't deserve to be on CPAN. But since I kept finding myself copy/pasting this method into multiple places, I finally figured it deserved to live in its own class....

KARMAN/Sort-SQL-0.08 - 30 Nov 2009 02:13:15 UTC

Sort::Key - the fastest way to sort anything in Perl River stage two • 17 direct dependents • 23 total dependents

Sort::Key provides a set of functions to sort lists of values by some calculated key value. It is faster (usually much faster) and uses less memory than other alternatives implemented around perl sort function (ST, GRT, etc.). Multi-key sorting funct...

SALVA/Sort-Key-1.33 - 29 Apr 2014 11:55:23 UTC

Sort::Sub - Collection of sort subroutines River stage two • 23 direct dependents • 96 total dependents

Sort::Sub and "Sort::Sub::*" are a convenient packaging of any kind of subroutine which you can use for "sort()". To use Sort::Sub, you import a list of: ["$"]NAME [ "<" [i][r] ">" ] Where NAME is actually searched under "Sort::Sub::*" namespace. For...

PERLANCAR/Sort-Sub-0.120 - 24 May 2020 18:12:50 UTC

Sort::Tree - Organize list of objects into parent/child order. River stage zero No dependents

Sort::Tree includes three routines, list_to_tree, tree_to_list and traverse. These are used to organize an unordered list of objects into a tree form. For example, you'd perform a database query to gain a list of folders in a document system, and the...

BRYCE/Sort-Tree-1.09 - 06 May 2004 21:03:17 UTC

Sort::Hash - get the keys to a hashref sorted by their values. River stage zero No dependents

Get the keys to a hashref sorted by their values....

BRAINBUZ/Sort-Hash-2.05 - 28 Jul 2014 16:44:56 UTC

File::Sort - Sort a file or merge sort multiple files River stage one • 1 direct dependent • 1 total dependent

This module sorts text files by lines (or records). Comparisons are based on one or more sort keys extracted from each line of input, and are performed lexicographically. By default, if keys are not given, sort regards each input line as a single fie...

CNANDOR/File-Sort-1.01 - 23 Jan 2002 05:12:37 UTC

Sort::Rank - Sort arrays by some score and organise into ranks. River stage zero No dependents

Typically when presenting positions in some league or popularity chart or formatting a table of examination results entries with the same score are grouped together by rank like this: ======================== Pos Score Name ======================== 1...

ANDYA/Sort-Rank-v0.0.2 - 23 Feb 2007 18:26:55 UTC

SPVM::Sort - Sorting Functions River stage two • 23 direct dependents • 26 total dependents

"Sort" provides sorting functions. The sorting algorithm is a stable merge sort....

KIMOTO/SPVM-0.990001 - 26 Apr 2024 00:45:58 UTC

Sort::Maker - A simple way to make efficient sort subs River stage two • 1 direct dependent • 16 total dependents

This module has two main goals: to make it easy to create correct sort functions, and to make it simple to select the optimum sorting algorithm for the number of items to be sorted. Sort::Maker generates complete sort subroutines in one of four style...

URI/Sort-Maker-0.06 - 07 Jan 2007 05:54:36 UTC

Sort::Merge - general merge sort River stage zero No dependents

Merge sorting is a technique for merging together multiple input streams, each of which is sorted, into one larger output stream, still sorted. This module implements that algorithm. Note the large caveat above: the inputs must already be sorted. If ...

JMASTROS/Sort-Merge-0.01 - 08 Dec 2003 17:07:13 UTC

Sort::Array - This extended sorting algorithm allows you to River stage zero No dependents

Sort_Table() is capable of sorting table-form arrays by a particular value. Discard_Duplicates() discards doubles from an array and returns the sorted array. Usage @data = Sort_Table( cols => '4', field => '4', sorting => 'descending', structure => '...

MIDI/Sort-Array-0.26 - 25 Aug 2001 14:00:51 UTC

Sort::TSort - topological sort; a very simple wrapper around 'tsort' command line utility. River stage zero No dependents

Sort::TSort::tsort performs a topological sort of an acyclic directed graph defined by list of edges (pairs of vertices). Sort::TSort does this by invoking external command tsort (1). Exports one subroutine on demand: tsort. If external program tsort...

HELENA/Sort-TSort-0.01 - 04 Jul 2015 19:18:58 UTC
214 results (0.029 seconds)