Search results for "module:List::MoreUtils"

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::MoreUtils::XS - Provide compiled List::MoreUtils functions River stage four • 3 direct dependents • 3119 total dependents

List::MoreUtils::XS is a backend for List::MoreUtils. Even if it's possible (because of user wishes) to have it practically independent from List::MoreUtils, it technically depend on "List::MoreUtils". Since it's only a backend, the API is not public...

REHSACK/List-MoreUtils-XS-0.430 - 21 Oct 2020 07:11:32 UTC

List::MoreUtils::PP - Provide List::MoreUtils pure Perl implementation River stage four • 820 direct dependents • 3118 total dependents

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

Bencher::Scenario::List::MoreUtils - Benchmark List::MoreUtils::PP vs List::MoreUtils::XS River stage one • 1 direct dependent • 1 total dependent

EARLY VERSION, ONLY A FEW FUNCTIONS HAVE BEEN BENCHMARKED. Packaging a benchmark script as a Bencher scenario makes it convenient to include/exclude/add participants/datasets (either via CLI or Perl code), send the result to a central repository, amo...

PERLANCAR/Bencher-Scenario-List-MoreUtils-0.041 - 20 May 2022 10:41:43 UTC

List::EvenMoreUtils - Array manipulation functions River stage one • 2 direct dependents • 2 total dependents

MUIR/List-EvenMore-0.11 - 02 Sep 2009 01:48:00 UTC

List::oo - object interface to list (array) methods River stage zero No dependents

EWILHELM/List-oo-v0.2.1 - 07 Jun 2008 19:57:50 UTC

List::Zip - Module to zip lists. River stage zero No dependents

Provides functionality to zip lists. The provided subroutine returns a list formed from the input lists. List::MoreUtils also provides functionality to "mesh" lists. However, this implementation differs. If the lists passed to "zip" have different si...

LLOYDG/List-Zip-0.04 - 23 Jun 2014 22:54:34 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

List::Slice - Slice-like operations on lists River stage zero No dependents

This module provides functions for slicing lists. This is helpful when you want to do a chain of manipulations on a list (map, grep, sort) and then slice, without the cumbersome "(...)[x]" syntax....

PREACTION/List-Slice-0.003 - 31 May 2015 22:28:45 UTC

List::Tuples - Makes tuples from lists River stage zero No dependents

This module defines subroutines that let you create tuples....

NKH/List-Tuples-0.04.4 - 14 Jan 2009 17:35:04 UTC

List::Search - fast searching of sorted lists River stage zero No dependents

This module lets you quickly search a sorted list. It will return the index of the first entry that matches, or if there is no exact matches then the first entry that is greater than the search key. For example in the list "my @list = qw( bob dave fr...

EVDB/List-Search-0.3 - 22 Jan 2007 20:16:25 UTC

List::Rubyish - Array iterator like the Ruby River stage one • 1 direct dependent • 1 total dependent

YAPPO/List-Rubyish-0.03 - 22 Oct 2008 14:18:15 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

List::MapMulti - map through multiple arrays at once River stage zero No dependents

List::MapMulti provides shortcuts for looping through several lists in a nested fashion. Think about all the times you've needed to do something like: foreach my $x (@exes) { foreach my $y (@whys) { # do something with $x and $y } } There are two dif...

TOBYINK/List-MapMulti-0.004 - 10 Sep 2014 22:27:29 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::Util::XS - Indicate if List::Util was compiled with a C compiler River stage five • 3901 direct dependents • 32646 total dependents

"List::Util::XS" can be used as a dependency to ensure List::Util was installed using a C compiler and that the XS version is installed. During installation $List::Util::XS::VERSION will be set to "undef" if the XS was not compiled. Starting with rel...

PEVANS/Scalar-List-Utils-1.63 - 08 Aug 2022 13:53:51 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::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

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
30 results (0.044 seconds)