show/hide this revision's text 6 deleted 9 characters in body

It is not possible to define default ==, but you can define default != via == which you should define yourselves. For this you should do following things:

#include <utility>
using namespace std::rel_ops;
...

class FooClass
{
public:
  bool operator== (const FooClass& other) const {
  // ...
  }
};

You can see http://olympus.het.brown.edu/cgi-bin/man/man2html?std%3A%3Arel%5Fops+3http://www.cplusplus.com/reference/std/utility/rel%5Fops/ for details.

In addition if you define operator< , operators for <=, >, >= can be deduced from it when using std::rel_ops.

But you should be careful when you use std::rel_ops because comparison operators can be deduced for the types you are not expected for.

More preferred way to deduce related operator from basic one is to use boost::operators.

The approach used in boost is better because it define the usage of operator for the class you only want, not for all classes in scope.

You can also generate "+" from "+=", - from "-=", etc... (see full list here)

show/hide this revision's text 5 added 84 characters in body

It is not possible to define default ==, but you can define default != via == which you should define yourselves. For this you should do following things:

#include <utility>
using namespace std::rel_ops;
...

class FooClass
{
public:
  bool operator== (const FooClass& other) const {
  // ...
  }
};

You can see http://olympus.het.brown.edu/cgi-bin/man/man2html?std%3A%3Arel%5Fops+3 for details.

After this

In addition if you define operator< , operators for <=, >, >= are can be deduced from <.it when using std::rel_ops.

But you should be careful when you use std::rel_ops because comparison operators can be deduced for the types you are not expected for.

More preferred way to deduce related operator from basic one is to use boost::operators.

The approach used in boost is better because it define the usage of operator for the class you only want, not for all classes in scope.

You can also generate "+" from "+=", - from "-=", etc... (see full list here)

show/hide this revision's text 4 deleted 15 characters in body

It is not possible to define default ==, but you can define default != via == which you should define yourselves. For this you should do following things:

#include <utility>
using namespace std::rel_ops;
...

class FooClass
{
public:
  bool operator== (const FooClass& other) const {
  // ...
  }
};

You can see http://olympus.het.brown.edu/cgi-bin/man/man2html?std%3A%3Arel%5Fops+3 for details.

After this <=, >, >= are deduced from <.

But you should be careful when you use std::rel_ops because comparison operators can be deduced for the types you are not expected for.

More preferred way to deduce related operator from basic one is to use boost::operators.

The approach used in boost is better because it define the usage of operator for the class you only want, not for all classes in scope.

You can also generate "+" from "+=", - from "-=", etc...

Full (see full list is available here)

show/hide this revision's text 3 added 666 characters in body
show/hide this revision's text 2 Formatting.
show/hide this revision's text 1