Open
Description
The documentation for the partialeq_ne_impl
states:
Therefore, there should never be any need to re-implement it.
but this is incorrect since re-implementing PartialEq::ne
makes often a lot of sense for performance purposes where it can be implemented more efficiently than just !eq
.