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

Search results for "module:List::Part"

List::Part - Partition one array into several River stage zero No dependents

There are many applications in which the items of a list need to be categorized. For example, let's say you want to categorize lines in a log file: my($success, $failure)=part { /^ERR/ } <LOG>; Or, suppose you have a list of employees, and you need t...

BRENTDAX/List-Part-0.03 - 26 Dec 2003 23:06:33 UTC

Kx - Perl extension for Kdb+ http://kx.com River stage zero No dependents

Alpha code. Create a wrapper around Kdb+ and Q in Perl using the C interface to Kdb+...

SLOYD/Kx-0.044 - 04 Feb 2023 14:16:58 UTC

Ref::List - Punctuation-free dereferencing of arrayrefs and hashrefs River stage one • 1 direct dependent • 1 total dependent

This tiny module exports a single function, "list", which dereferences the arrayref or hashref passed to it as an argument. "list $argument" is basically a synonym for "@{$argument}", but is less awkward when $argument is a longer expression part of ...

PSHANGOV/Ref-List-0.002 - 01 Apr 2011 08:27:20 UTC

List::Util - A selection of general-utility list subroutines River stage five • 3901 direct dependents • 32646 total dependents

"List::Util" contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would not really be high enough to warrant the use of a keyword, and the size so small such that being individual extens...

PEVANS/Scalar-List-Utils-1.63 - 08 Aug 2022 13:53:51 UTC

List::NSect - Cuts or divides a list into N equal parts. River stage zero No dependents

List::NSect is an Exporter that exports the function "nsect". nsect like bisect not mosquito I had a hard time deciding on a function name that was distinct and succinct. When I searched the Internet for "divide into equal parts", "bisect - to divide...

MRDVT/List-NSect-0.07 - 06 Nov 2022 01:06:56 UTC

MODS::Record - Perl extension for handling MODS records River stage two • 2 direct dependents • 10 total dependents

This module provides MODS (http://www.loc.gov/standards/mods/) parsing and creation for MODS Schema 3.5....

HOCHSTEN/MODS-Record-0.13 - 22 Nov 2018 15:00:56 UTC

Xmms - Interactive remote control shell for xmms River stage one • 1 direct dependent • 2 total dependents

Xmms::shell provides an alternative or companion interface to the xmms gui. Feature summary: Standard Play Controls play, pause, stop, next, prev, eject Standard Options toggle repeat, toggle shuffle Playlist Controls clear, select, add file(s), add ...

DOUGM/Xmms-Perl-0.12 - 21 Mar 2002 06:51:48 UTC

Module::List - module `directory' listing River stage three • 34 direct dependents • 559 total dependents

This module deals with the examination of the namespace of Perl modules. The contents of the module namespace is split across several physical directory trees, but this module hides that detail, providing instead a view of the abstract namespace....

ZEFRAM/Module-List-0.004 - 30 Jul 2017 09:03:28 UTC

List::Regexp - Convert list of strings to a regular expression River stage zero No dependents

Returns a regular expression that will match any string from the input list @strings. First argument can be a reference to a hash, which controls how the regexp is built. Valid keys are: type => pcre|posix|emacs Controls the flavor of the generated e...

SGRAY/List-Regexp-1.04 - 13 Feb 2021 08:57:09 UTC

List::Extract - grep and splice combined River stage zero No dependents

"List::Extract" exports a "grep"-like routine called "extract" that both returns and extracts the elements that tests true. It's "grep" and "splice" combined....

LODIN/List-Extract-0.03 - 03 Jul 2008 19:17:43 UTC

List::MapList - map lists through a list of subs, not just one River stage zero No dependents

List::MapList provides methods to map a list through a list of transformations, instead of just one. The transformations are not chained together on each element; only one is used, alternating sequentially. Here's a contrived example: given the trans...

RJBS/List-MapList-1.124 - 30 Dec 2022 19:12:13 UTC

List::UtilsBy - higher-order list utility functions River stage three • 48 direct dependents • 692 total dependents

This module provides a number of list utility functions, all of which take an initial code block to control their behaviour. They are variations on similar core perl or "List::Util" functions of similar names, but which use the block to control their...

PEVANS/List-UtilsBy-0.12 - 29 Apr 2022 15:34:19 UTC

WWW::Geni - Perl extension for Geni.com River stage zero No dependents

Use this module to manipulate Geni profiles and examine profile conflicts. This module contains four classes: WWW::Geni, WWW::Geni::List, WWW::Geni::Profile, and WWW::Geni::Conflict....

ERINSPICE/WWW-Geni-0.3.0a - 05 May 2011 00:16:01 UTC

List::Prefixed - Prefixed String List River stage zero No dependents

The idea of a *Prefixed List* comes from regular expressions determining a finite list of words, like this: /(?:Ba(?:r|z)?|F(?:o(?:o(?:d|t)?|r(?:m)?)|u))/ The expression above matches exactly these strings: "Ba", "Bar", "Baz", "Foo", "Food", "Foot", ...

BOETHIN/List-Prefixed-0.03 - 04 Mar 2015 21:02:46 UTC

List::AllUtils - Combines List::Util, List::SomeUtils and List::UtilsBy in one bite-sized package River stage three • 143 direct dependents • 510 total dependents

Are you sick of trying to remember whether a particular helper is defined in List::Util, List::SomeUtils or List::UtilsBy? I sure am. Now you don't have to remember. This module will export all of the functions that either of those three modules defi...

DROLSKY/List-AllUtils-0.19 - 23 Apr 2021 16:32:12 UTC

List::Compare - Compare elements of two or more lists River stage three • 37 direct dependents • 128 total dependents

JKEENAN/List-Compare-0.55 - 16 Aug 2020 22:42:25 UTC

List::AssignRef - assign an arrayref to an array sensibly River stage zero No dependents

OK, so you might ask yourself, why would you want to do this: my \@array = $arrayref; When you can just do this: my @array = @{ $arrayref }; Well, in that simple case List::AssignRef is overkill. However, what about cases when you have a function tha...

TOBYINK/List-AssignRef-0.005 - 15 Nov 2020 21:43:40 UTC

List::SomeUtils - Provide the stuff missing in List::Util River stage three • 21 direct dependents • 596 total dependents

List::SomeUtils provides some trivial but commonly needed functionality on lists which is not going to go into List::Util. All of the below functions are implementable in only a couple of lines of Perl code. Using the functions from this module howev...

DROLSKY/List-SomeUtils-0.59 - 11 Dec 2022 04:38:34 UTC

List::MoreUtils - Provide the stuff missing in List::Util River stage four • 820 direct dependents • 3118 total dependents

List::MoreUtils provides some trivial but commonly needed functionality on lists which is not going to go into List::Util. All of the below functions are implementable in only a couple of lines of Perl code. Using the functions from this module howev...

REHSACK/List-MoreUtils-0.430 - 21 Oct 2020 14:55:08 UTC

List::Breakdown - Build sublist structures matching conditions River stage zero No dependents

This module assists you in making a *breakdown* of a list, copying and filtering its items into a structured bucket layout according to your specifications. Think of it as a syntax for "grep" that returns named and structured results from one list. I...

TEJR/List-Breakdown-0.26 - 01 Jul 2021 00:40:30 UTC
48 results (0.045 seconds)