List::MoreUtils (3)
Leading comments
Automatically generated by Pod::Man 4.09 (Pod::Simple 3.35) Standard preamble: ========================================================================
NAME
List::MoreUtils - Provide the stuff missing in List::UtilSYNOPSIS
# import specific functions use List::MoreUtils qw(any uniq); if ( any { /foo/ } uniq @has_duplicates ) { # do stuff } # import everything use List::MoreUtils ':all'; # import by API # has "original" any/all/none/notall behavior use List::MoreUtils ':like_0.22'; # 0.22 + bsearch use List::MoreUtils ':like_0.24'; # has "simplified" any/all/none/notall behavior + (n)sort_by use List::MoreUtils ':like_0.33';
DESCRIPTION
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 however should give slightly better performance as everything is implemented in C. The pure-Perl implementation of these functions only serves as a fallback in case the C portions of this module couldn't be compiled on this machine.
EXPORTS
Default behavior
Nothing by default. To import all of this module's symbols use the ":all" tag. Otherwise functions can be imported by name as usual:
use List::MoreUtils ':all'; use List::MoreUtils qw{ any firstidx };
Because historical changes to the
Like version 0.22 (last release with original API)
This
use List::MoreUtils ':like_0.22';
This import tag will import all functions available as of version 0.22. However, it will import "any_u" as "any", "all_u" as "all", "none_u" as "none", and "notall_u" as "notall".
Like version 0.24 (first incompatible change)
This
use List::MoreUtils ':like_0.24';
This import tag will import all functions available as of version 0.24. However it will import "any_u" as "any", "all_u" as "all", and "notall_u" as "notall". It will import "none" as described in the documentation below (true for empty list).
Like version 0.33 (second incompatible change)
This
use List::MoreUtils ':like_0.33';
This import tag will import all functions available as of version 0.33. Note: it will not import "bsearch" for consistency with the 0.33
FUNCTIONS
Junctions
Treatment of an empty listThere are two schools of thought for how to evaluate a junction on an empty list:
- *
- Reduction to an identity (boolean)
- *
- Result is undefined (three-valued)
In the first case, the result of the junction applied to the empty list is determined by a mathematical reduction to an identity depending on whether the underlying comparison is ``or'' or ``and''. Conceptually:
"any are true" "all are true" -------------- -------------- 2 elements: A || B || 0 A && B && 1 1 element: A || 0 A && 1 0 elements: 0 1
In the second case, three-value logic is desired, in which a junction applied to an empty list returns "undef" rather than true or false
Junctions with a "_u" suffix implement three-valued logic. Those without are boolean.
all
all_u
Returns a true value if all items in
print "All values are non-negative" if all { $_ >= 0 } ($x, $y, $z);
For an empty
Thus, "all_u(@list)" is equivalent to "@list ? all(@list) : undef".
Note: because Perl treats "undef" as false, you must check the return value of "all_u" with "defined" or you will get the opposite result of what you expect.
any
any_u
Returns a true value if any item in
print "At least one non-negative value" if any { $_ >= 0 } ($x, $y, $z);
For an empty
Thus, "any_u(@list)" is equivalent to "@list ? any(@list) : undef".
none
none_u
Logically the negation of "any". Returns a true value if no item in
print "No non-negative values" if none { $_ >= 0 } ($x, $y, $z);
For an empty
Thus, "none_u(@list)" is equivalent to "@list ? none(@list) : undef".
Note: because Perl treats "undef" as false, you must check the return value of "none_u" with "defined" or you will get the opposite result of what you expect.
notall
notall_u
Logically the negation of "all". Returns a true value if not all items in
print "Not all values are non-negative" if notall { $_ >= 0 } ($x, $y, $z);
For an empty
Thus, "notall_u(@list)" is equivalent to "@list ? notall(@list) : undef".
one
one_u
Returns a true value if precisely one item in
print "Precisely one value defined" if one { defined($_) } @list;
Returns false otherwise.
For an empty
The expression "one BLOCK LIST" is almost equivalent to "1 == true BLOCK LIST", except for short-cutting. Evaluation of
Transformation
applyApplies
my @list = (1 .. 4); my @mult = apply { $_ *= 2 } @list; print "\@list = @list\n"; print "\@mult = @mult\n"; __END__ @list = 1 2 3 4 @mult = 2 4 6 8
Think of it as syntactic sugar for
for (my @mult = @list) { $_ *= 2 }
insert_after
Inserts
my @list = qw/This is a list/; insert_after { $_ eq "a" } "longer" => @list; print "@list"; __END__ This is a longer list
insert_after_string
Inserts
my @list = qw/This is a list/; insert_after_string "a", "longer" => @list; print "@list"; __END__ This is a longer list
pairwise
Evaluates
@a = (1 .. 5); @b = (11 .. 15); @x = pairwise { $a + $b } @a, @b; # returns 12, 14, 16, 18, 20 # mesh with pairwise @a = qw/a b c/; @b = qw/1 2 3/; @x = pairwise { ($a, $b) } @a, @b; # returns a, 1, b, 2, c, 3
mesh
zip
Returns a list consisting of the first elements of each array, then the second, then the third, etc, until all arrays are exhausted.
Examples:
@x = qw/a b c d/; @y = qw/1 2 3 4/; @z = mesh @x, @y; # returns a, 1, b, 2, c, 3, d, 4 @a = ('x'); @b = ('1', '2'); @c = qw/zip zap zot/; @d = mesh @a, @b, @c; # x, 1, zip, undef, 2, zap, undef, undef, zot
"zip" is an alias for "mesh".
uniq
distinct
Returns a new list by stripping duplicate values in
my @x = uniq 1, 1, 2, 2, 3, 5, 3, 4; # returns 1 2 3 5 4 my $x = uniq 1, 1, 2, 2, 3, 5, 3, 4; # returns 5 # returns "Mike", "Michael", "Richard", "Rick" my @n = distinct "Mike", "Michael", "Richard", "Rick", "Michael", "Rick" # returns '', 'S1', A5' and complains about "Use of uninitialized value" my @s = distinct '', undef, 'S1', 'A5' # returns undef, 'S1', A5' and complains about "Use of uninitialized value" my @w = uniq undef, '', 'S1', 'A5'
"distinct" is an alias for "uniq".
RT#49800 can be used to give feedback about this behavior.
singleton
Returns a new list by stripping values in
my @x = singleton 1,1,2,2,3,4,5 # returns 3 4 5
Partitioning
afterReturns a list of the values of
@x = after { $_ % 5 == 0 } (1..9); # returns 6, 7, 8, 9
after_incl
Same as "after" but also includes the element for which
before
Returns a list of values of
before_incl
Same as "before" but also includes the element for which
part
Partitions
Returns a list of the partitions thusly created. Each partition created is a reference to an array.
my $i = 0; my @part = part { $i++ % 2 } 1 .. 8; # returns [1, 3, 5, 7], [2, 4, 6, 8]
You can have a sparse list of partitions as well where non-set partitions will be undef:
my @part = part { 2 } 1 .. 10; # returns undef, undef, [ 1 .. 10 ]
Be careful with negative values, though:
my @part = part { -1 } 1 .. 10; __END__ Modification of non-creatable array value attempted, subscript -1 ...
Negative values are only ok when they refer to a partition previously created:
my @idx = ( 0, 1, -1 ); my $i = 0; my @part = part { $idx[$++ % 3] } 1 .. 8; # [1, 4, 7], [2, 3, 5, 6, 8]
Iteration
each_arrayCreates an array iterator to return the elements of the list of arrays
This is useful for looping over more than one array at once:
my $ea = each_array(@a, @b, @c); while ( my ($a, $b, $c) = $ea->() ) { .... }
The iterator returns the empty list when it reached the end of all arrays.
If the iterator is passed an argument of '"index"', then it returns the index of the last fetched set of values, as a scalar.
each_arrayref
Like each_array, but the arguments are references to arrays, not the plain arrays.
natatime
Creates an array iterator, for looping over an array in chunks of $n items at a time. (n at a time, get it?). An example is probably a better explanation than I could give in words.
Example:
my @x = ('a' .. 'g'); my $it = natatime 3, @x; while (my @vals = $it->()) { print "@vals\n"; }
This prints
a b c d e f g
Searching
bsearchPerforms a binary search on
Returns a boolean value in scalar context. In list context, it returns the element if it was found, otherwise the empty list.
bsearchidx
bsearch_index
Performs a binary search on
Returns the index of found element, otherwise "-1".
"bsearch_index" is an alias for "bsearchidx".
firstval
first_value
Returns the first element in
"first_value" is an alias for "firstval".
onlyval
only_value
Returns the only element in
"only_value" is an alias for "onlyval".
lastval
last_value
Returns the last value in
"last_value" is an alias for "lastval".
firstres
first_result
Returns the result of
"first_result" is an alias for "firstres".
onlyres
only_result
Returns the result of
"only_result" is an alias for "onlyres".
lastres
last_result
Returns the result of
"last_result" is an alias for "lastres".
indexes
Evaluates
@x = indexes { $_ % 2 == 0 } (1..10); # returns 1, 3, 5, 7, 9
firstidx
first_index
Returns the index of the first element in
my @list = (1, 4, 3, 2, 4, 6); printf "item with index %i in list is 4", firstidx { $_ == 4 } @list; __END__ item with index 1 in list is 4
Returns "-1" if no such item could be found.
"first_index" is an alias for "firstidx".
onlyidx
only_index
Returns the index of the only element in
my @list = (1, 3, 4, 3, 2, 4); printf "uniqe index of item 2 in list is %i", onlyidx { $_ == 2 } @list; __END__ unique index of item 2 in list is 4
Returns "-1" if either no such item or more than one of these has been found.
"only_index" is an alias for "onlyidx".
lastidx
last_index
Returns the index of the last element in
my @list = (1, 4, 3, 2, 4, 6); printf "item with index %i in list is 4", lastidx { $_ == 4 } @list; __END__ item with index 4 in list is 4
Returns "-1" if no such item could be found.
"last_index" is an alias for "lastidx".
Sorting
sort_byReturns the list of values sorted according to the string values returned by the
sort_by { $_->name } @people
The key function is called in scalar context, being passed each value in turn as both $_ and the only argument in the parameters, @_. The values are then sorted according to string comparisons on the values returned. This is equivalent to
sort { $a->name cmp $b->name } @people
except that it guarantees the name accessor will be executed only once per value. One interesting use-case is to sort strings which may have numbers embedded in them ``naturally'', rather than lexically.
sort_by { s/(\d+)/sprintf "%09d", $1/eg; $_ } @strings
This sorts strings by generating sort keys which zero-pad the embedded numbers to some level (9 digits in this case), helping to ensure the lexical sort puts them in the correct order.
nsort_by
Similar to sort_by but compares its key values numerically.
Counting and calculation
trueCounts the number of elements in
printf "%i item(s) are defined", true { defined($_) } @list;
false
Counts the number of elements in
printf "%i item(s) are not defined", false { defined($_) } @list;
minmax
Calculates the minimum and maximum of
The "minmax" algorithm differs from a naive iteration over the list where each element is compared to two values being the so far calculated min and max value in that it only requires 3n/2 - 2 comparisons. Thus it is the most efficient possible algorithm.
However, the Perl implementation of it has some overhead simply due to the fact that there are more lines of Perl code involved. Therefore,
ENVIRONMENT
When "LIST_MOREUTILS_PP" is set, the module will always use the pure-Perl implementation and not theMAINTENANCE
The maintenance goal is to preserve the documented semantics of theThis module attempts to use few non-core dependencies. Non-core configuration and testing modules will be bundled when reasonable; run-time dependencies will be added only if they deliver substantial benefit.
CONTRIBUTING
While contributions are appreciated, a contribution should not cause more effort for the maintainer than the contribution itself saves (see Open Source Contribution Etiquette <tirania.org/blog/archive/2010/Dec-31.html>).To get more familiar where help could be needed - see List::MoreUtils::Contributing.
BUGS
There is a problem with a bug in 5.6.x perls. It is a syntax error to write things like:
my @x = apply { s/foo/bar/ } qw{ foo bar baz };
It has to be written as either
my @x = apply { s/foo/bar/ } 'foo', 'bar', 'baz';
or
my @x = apply { s/foo/bar/ } my @dummy = qw/foo bar baz/;
Perl 5.5.x and Perl 5.8.x don't suffer from this limitation.
If you have a functionality that you could imagine being in this module, please drop me a line. This module's policy will be less strict than List::Util's when it comes to additions as it isn't a core module.
When you report bugs, it would be nice if you could additionally give me the output of your program with the environment variable "LIST_MOREUTILS_PP" set to a true value. That way I know where to look for the problem (in
SUPPORT
Bugs should always be submitted via theYou can find documentation for this module with the perldoc command.
perldoc List::MoreUtils
You can also look for information at:
- *
-
RT: CPAN's request tracker
- *
-
AnnoCPAN: Annotated CPANdocumentation
- *
-
CPANRatings
- *
-
CPANSearch
- *
- Git Repository
Where can I go for help?
If you have a bug report, a patch or a suggestion, please open a new report ticket atReport tickets should contain a detailed description of the bug or enhancement request and at least an easily verifiable way of reproducing the issue or fix. Patches are always welcome, too - and it's cheap to send pull-requests on GitHub. Please keep in mind that code changes are more likely accepted when they're bundled with an approving test.
If you think you've found a bug then please read ``How to Report Bugs Effectively'' by Simon Tatham: <www.chiark.greenend.org.uk/~sgtatham/bugs.html>.
Where can I go for help with a concrete version?
Bugs and feature requests are accepted against the latest version only. To get patches for earlier versions, you need to get an agreement with a developer of your choice - who may or not report the issue and a suggested fix upstream (depends on the license you have chosen).Business support and maintenance
Generally, in volunteered projects, there is no right for support. While every maintainer is happy to improve the provided software, spare time is limited.For those who have a use case which requires guaranteed support, one of the maintainers should be hired or contracted. For business support you can contact Jens via his
THANKS
Tassilo von Parseval
Credits go to a number of people: Steve Purkis for giving me namespace advice and James Keenan and Terrence Branno for their effort of keeping theBrian McCauley suggested the inclusion of apply() and provided the pure-Perl implementation for it.
Eric J. Roode asked me to add all functions from his module "List::MoreUtil" into this one. With minor modifications, the pure-Perl implementations of those are by him.
The bunch of people who almost immediately pointed out the many problems with the glitchy 0.07 release (Slaven Rezic, Ron Savage,
A particularly nasty memory leak was spotted by Thomas A. Lowery.
Lars Thegler made me aware of problems with older Perl versions.
Anno Siegel de-orphaned each_arrayref().
David Filmer made me aware of a problem in each_arrayref that could ultimately lead to a segfault.
Ricardo Signes suggested the inclusion of part() and provided the Perl-implementation.
Robin Huston kindly fixed a bug in perl's
Jens Rehsack
Credits goes to all people contributing feedback during the v0.400 development releases.Special thanks goes to David Golden who spent a lot of effort to develop a design to support current state of
Toby Inkster provided a lot of useful feedback for sane importer code and was a nice sounding board for
Peter Rabbitson provided a sane git repository setup containing entire package history.
TODO
A pile of requests from other people is still pending further processing in my mailbox. This includes:- *
-
List::Util export pass-through
Allow List::MoreUtils to pass-through the regular List::Util functions to end users only need to "use" the one module.
- *
-
uniq_by(&@)
Use code-reference to extract a key based on which the uniqueness is determined. Suggested by Aaron Crane.
- *
- delete_index
- *
- random_item
- *
- random_item_delete_index
- *
- list_diff_hash
- *
- list_diff_inboth
- *
- list_diff_infirst
- *
-
list_diff_insecond
These were all suggested by Dan Muey.
- *
-
listify
Always return a flat list when either a simple scalar value was passed or an array-reference. Suggested by Mark Summersault.
SEE ALSO
List::Util, List::AllUtils, List::UtilsByAUTHOR
Jens Rehsack <rehsackAdam Kennedy <adamk@cpan.org>
Tassilo von Parseval <tassilo.von.parseval@rwth-aachen.de>
COPYRIGHT AND LICENSE
Some parts copyright 2011 Aaron Crane.Copyright 2004 - 2010 by Tassilo von Parseval
Copyright 2013 - 2015 by Jens Rehsack
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.4 or, at your option, any later version of Perl 5 you may have available.