26 lines
476 B
C++
26 lines
476 B
C++
#pragma once
|
|
|
|
template <class Derived>
|
|
struct TotalOrdering
|
|
{
|
|
friend bool operator!=(const Derived& a, const Derived& b)
|
|
{
|
|
return !(a == b);
|
|
}
|
|
|
|
friend bool operator<=(const Derived& a, const Derived& b)
|
|
{
|
|
return a < b || a == b;
|
|
}
|
|
|
|
friend bool operator>(const Derived& a, const Derived& b)
|
|
{
|
|
return !(a <= b);
|
|
}
|
|
|
|
friend bool operator>=(const Derived& a, const Derived& b)
|
|
{
|
|
return !(a < b);
|
|
}
|
|
};
|