Or rather, why isn't (==) usable on every data type? Why do we have to derive Eq ourseleves? In other languages, such as Python, C++, and surely others, it has a default implementation for everything!
I can't think of types that can't be compared.
|
In Python the default equality implementation compares identity, not value. This is useful for user-defined classes, which by default are mutable and do not have to have a well-defined notion of "value". But even in that setting, it is more normal to use the With Haskell's immutability and sharing this notion of "identity" doesn't make much sense. If you could compare two terms by identity you could find out whether or not they are shared, but it's generally up to the implementation whether two terms that might be shared actually are shared, so such information shouldn't be able to affect the behaviour of the program (unless you like programs that change their behaviour under different compiler optimisation strategies). So equality in Haskell is always value equality; it tells you whether two terms represent the same value (not necessarily whether they have equal structure; if you implement a set with an unordered list then two lists with different structure can represent the same set). Almost all of the built in types are members of And unfortunately the fact that functions can't be members of So, there are (1) types that are already members of I think that would be a pretty small win for the cost. The compiler would have to try to construct an instance of everything and presume that anything for which that fails isn't supposed to have an |
|||||||
|
|
You can't imagine a noncomparable type? Well, the classic example are functions. Consider functions |
|||||||||||||||||||||
|
|
You may not want to derive Eq - you might want to write your own instance. For example, imagine data in a binary tree data structure:
You could have the same data in your
The fact that the data is stored in a tree may only be for efficiency of traversal, in which case you'd probably want to say that |
||||
|
|
|
Because the way that values are compared may be custom. For example, certain "fields" might be excluded from comparison. Or consider a type representing a case-insensitive string. Such a type would not want to compare the Chars it contains for identity. |
|||||||||||||||
|
|
|||||||
|
|
Consider the following Python example:
False? o_O This of course makes sense if you realize that Python == compares pointer values, except when it doesn't.
Haskell encourages |
|||||||||||||||
|
|
How do you compare functions? Or existential types? Or MVars? There are incomparable types. Edit: MVar is in Eq!
But it takes a magic primop to make it so. |
|||||||
|

==. – Pubby Jun 8 '12 at 22:26==means different things in those languages. Particularly, it is reference equality rather than semantic equality (except in special cases like primitives where it is semantic). So in Python or Java,x == yjust tells you thatxandypoint to the same place in memory. (Try comparing equivalent lambdas.) In Haskell, reference equality does not make sense, so==always represents semantic equality, which is undecidable for certain types like functions. For example, in Java, you have to define.equals()yourself to get similar behavior. – Tikhon Jelvis Jun 8 '12 at 22:56