Reverts a bunch of commits as a try to fix GC errors.

Commits

- 694f01db2d
- 829479d1dd
- bd81885f70
- b2fdcf801c
This commit is contained in:
Domen Kožar
2015-03-17 08:55:03 +01:00
parent 92501d62f4
commit 1e4ba025c2
2 changed files with 62 additions and 114 deletions
+3 -3
View File
@@ -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));
}