Reverts a bunch of commits as a try to fix GC errors.
Commits -694f01db2d-829479d1dd-bd81885f70-b2fdcf801c
This commit is contained in:
+3
-3
@@ -234,8 +234,8 @@ rec {
|
||||
in [x] ++ remove x xs;
|
||||
|
||||
# Intersects list 'e' and another list
|
||||
intersectLists = e: filter (x: elem x e);
|
||||
intersect = e: filter (x: elem x e);
|
||||
|
||||
# Subtracts list 'e' from another list
|
||||
subtractLists = e: filter (x: !(elem x e));
|
||||
# Substracts list 'e' from another list
|
||||
substract = e: filter (x: !(elem x e));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user