okay, this is probably going to be in the prelude, but: is there a standard library function for finding the unique elements in a list? my (re)implementation, for clarificat
I searched for (Eq a) => [a] -> [a] on Hoogle.
(Eq a) => [a] -> [a]
First result was nub (remove duplicate elements from a list).
Hoogle is awesome.