Skip Menu |

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

Report information
The Basics
Id: 75847
Status: new
Priority: 0/
Queue: Array-Utils

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

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



Subject: unique shuffles the array
The `unique` method seems to shuffle the array order. Can this be updated to preserve the existing order yet unique-fy by "first occurrence wins"? If not - please update the documentation to reflect the _shuffle_ behavior. Patch attached. Thanks, Mithun
Subject: Utils.pm.patch
109,110c109 < my %e; < return grep { ! $e{$_}++ } @_; --- > return keys %{ {map { $_ => undef } @_}};