lib.lists.unique: Switch from recursive function to using a fold

This improves performance by ~30-40% for smaller test cases and makes
larger cases where my laptop would OOM pass in seconds.
This commit is contained in:
adisbladis 2020-11-24 06:20:01 +01:00
parent 8d8532cd32
commit 85605c8a29
No known key found for this signature in database
GPG key ID: 110BFAD44C6249B7

View file

@ -640,13 +640,7 @@ rec {
unique [ 3 2 3 4 ]
=> [ 3 2 4 ]
*/
unique = list:
if list == [] then
[]
else
let
x = head list;
in [x] ++ unique (remove x list);
unique = foldl' (acc: e: if elem e acc then acc else acc ++ [ e ]) [];
/* Intersects list 'e' and another list. O(nm) complexity.