operator overloading c++
- by segfault
When overloading operators, is it necessary to overload = <= and !=?
It seems like it would be smart for c++ to call !operator= for !=, ! for operator<= and !< for operator=.
Is that the case, or is it necessary to overload every function?