60#define _STL_RELOPS_H 1
62namespace std _GLIBCXX_VISIBILITY(default)
64_GLIBCXX_BEGIN_NAMESPACE_VERSION
89 {
return !(__x == __y); }
102 {
return __y < __x; }
115 {
return !(__y < __x); }
128 {
return !(__x < __y); }
131_GLIBCXX_END_NAMESPACE_VERSION
ISO C++ entities toplevel namespace is std.
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 <.