mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
lib: improve the implementation of the unique function
This commit is contained in:
parent
6b2bd330fa
commit
8319ead594
@ -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