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.

link|improve this question

Another problem with using namespace std::rel_ops is 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 suitable operator> were defined in the same namespace as my_type, or in the global namespace). – Mike Seymour Jun 3 '11 at 14:17
feedback

1 Answer

up vote 6 down vote accepted

I think that the preferred technique is not to use std::rel_ops at all. The technique used in boost::operator seems to be the usual solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.