Skip Menu |

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

Report information
The Basics
Id: 127125
Status: new
Priority: 0/
Queue: Scalar-List-Utils

People
Owner: Nobody in particular
Requestors: KES [...] cpan.org
Cc:
AdminCc:

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



Subject: implement lvpairs
https://perldoc.perl.org/List/Util.html#pairs foreach my $pair ( pairs @kvlist ) { my ( $key, $value ) = @$pair; ... } This example is not so efficient because of double coping: first when create $pair second when we extract $key/$value from $pair On IRC you have said that can implement lvpairs to keep values aliased