:: Eq a => [a] -> [[a]] package:code-conjure

Classify values using their Eq instance.
> classify [1,2,3,1,2,1]
[[1,1,1],[2,2],[3]]
(cf. classifyBy, classifyOn)
Return sets of values based on the list. The values in the list must me unique.