<div dir="auto">The (==) type family in Data.Type.Equality was designed largely to calculate structural equality of types. However, limitations of GHC's type system at the type prevented this from being fully realized. Today, with TypeInType, we can actually do it, replacing the boatload of ad hoc instances like so:<div dir="auto"><br></div><div dir="auto"><div dir="auto">type (a :: k) == (b :: k) = Equal k a b</div><div dir="auto">infix 4 ==</div><div dir="auto"><br></div><div dir="auto"><div dir="auto">type family Equal (k :: Type) (a :: k) (b :: k) where</div><div dir="auto"><span style="white-space:pre">   </span>  Equal k ((f :: j -> k) (a :: j)) ((g :: j -> k) (b :: j)) =</div><div dir="auto"><span style="white-space:pre">     </span>        Equal (j -> k) f g && Equal j a b</div><div dir="auto"><span style="white-space:pre">        </span>  Equal k a a = 'True</div><div dir="auto"><span style="white-space:pre">       </span>  Equal k a b = 'False</div><div dir="auto"><br></div><div dir="auto">This == behaves in a much more uniform way than the current one. I see two potential causes for complaint:</div><div dir="auto"><br></div><div dir="auto">1. For types of kind *, the new version will sometimes fail to reduce when the old one succeeded (and vice versa). For example, GHC currently accepts</div><div dir="auto"><br></div><div dir="auto">eqeq :: forall (a :: *). proxy a -> (a == a) :~: 'True</div><div dir="auto">eqeq _ = Refl</div><div dir="auto"><br></div><div dir="auto">while the proposed version does not.</div><div dir="auto"><br></div><div dir="auto">2. Some users may want non-structural equality on their types for some reason. The only example in base is</div><div dir="auto"><br></div><div dir="auto">type instance (a :: ()) == (b :: ()) = 'True</div><div dir="auto"><br></div><div dir="auto">which consists two types of kind () the same even if they're stuck types. But perhaps someone wants to implement a non-trivial type-level data structure with a special notion of equality.</div><div dir="auto"><br></div><div dir="auto"><br></div><div dir="auto">I don't think (1) is really worth worrying too much about. For (2), if users want to have control, we could at least use a mechanism similar to the above to make the obvious instances easier to write.</div></div></div></div>