Skip Menu |

This queue is for tickets about the List-MoreUtils CPAN distribution.

Report information
The Basics
Id: 42921
Status: resolved
Priority: 0/
Queue: List-MoreUtils

People
Owner: Nobody in particular
Requestors: lespea [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: wish: mesh returns array of arrays
I think it would extremely useful if mesh returned a list of lists rather than just a flat list. @a = qw/a b c/; @b = qw/1 2 3/; @c = mesh @a, @b; # mesh returns ([a, 1], [b, 2], [c, 3]);
zip6 function added for this suit.