66 #define _STL_RELOPS_H 1
68 namespace std _GLIBCXX_VISIBILITY(default)
72 _GLIBCXX_BEGIN_NAMESPACE_VERSION
89 {
return !(__x == __y); }
102 {
return __y < __x; }
115 {
return !(__y < __x); }
128 {
return !(__x < __y); }
130 _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 <.
bool operator<=(const _Tp &__x, const _Tp &__y)
Defines <= for arbitrary types, in terms of <.