60 #define _STL_RELOPS_H 1
62 namespace std _GLIBCXX_VISIBILITY(default)
64 _GLIBCXX_BEGIN_NAMESPACE_VERSION
66 namespace rel_ops _GLIBCXX20_DEPRECATED_SUGGEST("<=>
")
88 operator!=(const _Tp& __x, const _Tp& __y)
89 { return !(__x == __y); }
101 operator>(const _Tp& __x, const _Tp& __y)
102 { return __y < __x; }
114 operator<=(const _Tp& __x, const _Tp& __y)
115 { return !(__y < __x); }
127 operator>=(const _Tp& __x, const _Tp& __y)
128 { return !(__x < __y); }
129 } // namespace rel_ops
131 _GLIBCXX_END_NAMESPACE_VERSION
134 #endif /* _STL_RELOPS_H */
ISO C++ entities toplevel namespace is std.