65 #define _STL_RELOPS_H 1
67 _GLIBCXX_BEGIN_NAMESPACE(
std)
86 {
return !(__x == __y); }
112 {
return !(__y < __x); }
125 {
return !(__x < __y); }
129 _GLIBCXX_END_NAMESPACE
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 <.