The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "module:Array::Compare"

Array::Compare - Perl extension for comparing arrays. River stage two • 14 direct dependents • 31 total dependents

If you have two arrays and you want to know if they are the same or different, then Array::Compare will be useful to you. All comparisons are carried out via a comparator object. In the simplest usage, you can create and use a comparator object like ...

DAVECROSS/Array-Compare-v3.0.8 - 21 Dec 2020 10:37:32 UTC

Test2::Compare::Array - Internal representation of an array comparison. River stage four • 921 direct dependents • 6519 total dependents

This module is an internal representation of an array for comparison purposes....

EXODIST/Test2-Suite-0.000162 - 25 Apr 2024 14:00:32 UTC

Array::Heap::PriorityQueue::Compare - Priority queue with custom comparison River stage one • 1 direct dependent • 1 total dependent

This module implements a priority queue, which is a data structure that can efficiently locate the item with the lowest weight at any time. This is useful for writing cost-minimizing and shortest-path algorithms. When creating a new queue, you supply...

BOBMATH/Array-Heap-ModifiablePriorityQueue-1.10 - 13 Jul 2015 00:27:55 UTC

Array::CompareAndFilter - Basic functions to compare and filter arrays for different requirements. River stage zero No dependents

This module helps to solve easy tasks with arrays. Comparing of arrays or filtering array data are this kind of task that this module supports. Functions The following parameter names ARRAY, ARRAY1 and ARRAY2 are synonyms for array any kind of arrays...

DADERUS/Array-CompareAndFilter-v1.100 - 22 Sep 2014 15:11:16 UTC

lib/Data/Range/Compare/Stream/Iterator/Array.pm River stage zero No dependents

AKALINUX/Data-Range-Compare-Stream-4.030 - 10 Dec 2015 21:52:31 UTC

Test::Stream::Compare::Array - Internal representation of an array comparison. River stage one • 1 direct dependent • 1 total dependent

This module is an internal representation of an array for comparison purposes....

EXODIST/Test-Stream-1.302027 - 05 Feb 2016 23:42:10 UTC

Array::Heap - treat perl arrays as binary heaps/priority queues River stage one • 2 direct dependents • 3 total dependents

There are a multitude of heap and heap-like modules on CPAN, you might want to search for /Heap/ and /Priority/ to find many. They implement more or less fancy datastructures that might well be what you are looking for. This module takes a different ...

MLEHMANN/Array-Heap-3.22 - 07 Dec 2016 12:07:05 UTC

Array::Diff - Find the differences between two arrays River stage three • 9 direct dependents • 242 total dependents

This module compares two pre-sorted arrays and returns the added or deleted elements in two separate arrays. It's a simple wrapper around Algorithm::Diff. Note: the arrays must be sorted before you call "diff". And if you need more complex array tool...

NEILB/Array-Diff-0.09 - 10 May 2019 08:34:15 UTC

Array::Find - Find items in array, with several options River stage one • 1 direct dependent • 1 total dependent

This module provides one subroutine: "find_in_array" to find items in array....

PERLANCAR/Array-Find-0.08 - 03 Sep 2015 08:20:26 UTC

Quiq::Array - Operationen auf Arrays River stage zero No dependents

Ein Objekt der Klasse repräsentiert ein Array. Jede der Methoden kann sowohl auf ein Objekt der Klasse als auch als Klassenmethode auf ein ungeblesstes oder eine andere Klasse geblesstes Perl-Array angewendet werden. Aufruf als Objektmethode: $arr->$...

FSEITZ/Quiq-1.215 - 28 Mar 2024 21:53:27 UTC

YAML::PP - YAML 1.2 processor River stage three • 48 direct dependents • 189 total dependents

YAML::PP is a modular YAML processor. It aims to support "YAML 1.2" and "YAML 1.1". See <https://yaml.org/>. Some (rare) syntax elements are not yet supported and documented below. YAML is a serialization language. The YAML input is called "YAML Stre...

TINITA/YAML-PP-v0.38.0 - 29 Jan 2024 23:29:38 UTC

Data::Match - Complex data structure pattern matching River stage one • 1 direct dependent • 2 total dependents

Data::Match provides extensible complex Perl data structure searching and matching....

KSTEPHENS/Data-Match-0.06 - 18 Dec 2002 09:20:36 UTC

Array::Unique - Tie-able array that allows only unique values River stage one • 2 direct dependents • 5 total dependents

This package lets you create an array which will allow only one occurrence of any value. In other words no matter how many times you put in 42 it will keep only the first occurrence and the rest will be dropped. You use the module via tie and once yo...

SZABGAB/Array-Unique-0.09 - 29 May 2023 17:29:18 UTC

File::chdir - a more sensible way to change directories River stage four • 203 direct dependents • 2884 total dependents

Perl's "chdir()" has the unfortunate problem of being very, very, very global. If any part of your program calls "chdir()" or if any library you use calls "chdir()", it changes the current working directory for the *whole* program. This sucks. File::...

DAGOLDEN/File-chdir-0.1011 - 07 Oct 2016 20:59:47 UTC

Array::GroupBy - Group equal elements of an ordered array, or list. River stage one • 1 direct dependent • 1 total dependent

igroup_by "igroup_by()" returns an iterator which when called, returns sub-arrays of the given array whose elements are "equal" as determined by a user-supplied boolean function. The iterator does this by stepping through the given data array, compar...

SAMB/Array-GroupBy-v0.0.4 - 25 Jun 2012 18:35:48 UTC

autobox::Core - Provide core functions to autoboxed scalars, arrays and hashes. River stage three • 21 direct dependents • 148 total dependents

The autobox module promotes Perl's primitive types (literals (strings and numbers), scalars, arrays and hashes) into first-class objects. However, autobox does not provide any methods for these new classes. autobox::CORE provides a set of methods for...

SWALTERS/autobox-Core-1.33 - 17 Dec 2016 22:40:50 UTC

Array::IntSpan - Handles arrays of scalars or objects using integer ranges River stage one • 4 direct dependents • 9 total dependents

"Array::IntSpan" brings the speed advantages of "Set::IntSpan" (written by Steven McDougall) to arrays. Uses include manipulating grades, routing tables, or any other situation where you have mutually exclusive ranges of integers that map to given va...

DDUMONT/Array-IntSpan-2.004 - 27 Mar 2020 18:06:17 UTC

Array::To::Moose - Build Moose objects from a data array River stage zero No dependents

As shown in the above examples, the general usage is: package MyClass; use Moose; (define Moose object(s)) ... use Array::To::Moose; ... my $data_ref = selectall_arrayref($sql); # for example my $object_ref = array_to_moose( data => $data_ref desc =>...

SAMB/Array-To-Moose-v0.0.9 - 21 Sep 2015 22:24:50 UTC

Tie::Array::Sorted - An array which is kept sorted River stage zero No dependents

This presents an ordinary array, but is kept sorted. All pushes and unshifts cause the elements in question to be inserted in the appropriate location to maintain order. Direct stores ("$a[10] = "wibble"") effectively splice out the original value an...

TMTM/Tie-Array-Sorted-1.41 - 07 Aug 2006 14:56:53 UTC

Array::PatternMatcher - Pattern matching for arrays. River stage zero No dependents

Array::PatternMatcher is based directly on the pattern matcher in Peter Norvig's excellent text "Paradigms of AI Programming: Case Studies in Common Lisp". All in all, it basically offers a different way to work with an array. Instead of manually ind...

TBONE/Array-PatternMatcher-0.04 - 26 Dec 2001 21:27:04 UTC
41 results (0.036 seconds)