How to generalize the definition of <if the structure has an arbitrarily many data members (<is determined by the order in which the data members are listed)? A simple example with three data members:
struct nData {
int a;
double b;
CustomClass c; // with == and < defined for CustomClass
bool operator == (const nData& other) {return (a == other.a) && (b == other.b) && (c == other.c);}
bool operator < (const nData& other) {
if ( (a < other.a) || ((a == other.a) && (b < other.b)) ||
((a == other.a) && (b == other.b) && (c < other.c)) )
return true;
return false;
}
};
How to use variable patterns and recursion?
source
share