What is the preferred method of using std::rel_ops to add the full set of relational operators to a class?
This documentation suggests a using namespace std::rel_ops, but this seems to be deeply flawed, as it would mean that including the header for the class implemented in this way would also add full relational operators to all other classes with a defined operator< and operator==, even if that was not desired. This has the potential to change the meaning of code in surprising ways.
As a side note - I have been using Boost.Operators to do this, but I am still curious about the standard library.
using namespace std::rel_opsis that the operators are not considered for argument-dependent lookup. This means that, for example,std::greater<my_type>will fail to compile (whereas it would succeed if a suitableoperator>were defined in the same namespace asmy_type, or in the global namespace). – Mike Seymour Jun 3 '11 at 14:17