mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
Merge pull request #59369 from Ekleog/unique-fix
lib: improve the implementation of the unique function
This commit is contained in:
commit
9f5ba91c7a
@ -633,8 +633,7 @@ rec {
|
||||
else
|
||||
let
|
||||
x = head list;
|
||||
xs = unique (drop 1 list);
|
||||
in [x] ++ remove x xs;
|
||||
in [x] ++ unique (remove x list);
|
||||
|
||||
/* Intersects list 'e' and another list. O(nm) complexity.
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user