Closed
Description
(blocked on working default methods)
Implementing TotalOrd
should implement Ord
with default methods, and implementing TotalEq
should provide a default Eq
. Types with only a partial ordering can implement Eq
/Ord
, and types with two different ordering semantics (floats) can implement both.
A TotalOrd
implementation can also provide TotalEq
via a default, so most types would only implement one trait directly or just derive everything.