Uses of Eq other than Ord

Are there any uses of Eq as a where bound other than those that implicitly use it through Ord?

I'm interested in examples in the standard library and elsewhere.

HashMap requires only Eq[1] from its keys, not Ord.


  1. And Hash ↩︎

6 Likes