65 #define _STL_RELOPS_H 1 
   67 namespace std _GLIBCXX_VISIBILITY(default)
 
   71   _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   88       { 
return !(__x == __y); }
 
  101       { 
return __y < __x; }
 
  114       { 
return !(__y < __x); }
 
  127       { 
return !(__x < __y); }
 
  129   _GLIBCXX_END_NAMESPACE_VERSION
 
bool operator>=(const _Tp &__x, const _Tp &__y)
Defines >= for arbitrary types, in terms of <. 
bool operator>(const _Tp &__x, const _Tp &__y)
Defines > for arbitrary types, in terms of <. 
bool operator!=(const _Tp &__x, const _Tp &__y)
Defines != for arbitrary types, in terms of ==. 
ISO C++ entities toplevel namespace is std. 
bool operator<=(const _Tp &__x, const _Tp &__y)
Defines <= for arbitrary types, in terms of <.