namespace std { namespace rel_ops { template inline bool operator != (const T& x, const T& y) { return !(x == y); } template inline bool operator> (const T& x, const T& y) { return y < x; } template inline bool operator<= (const T& x, const T& y) { return !(y < x); } template inline bool operator>= (const T& x, const T& y) { return !(x < y); } } }