return std::lexicographical_compare(__x.begin(), __x.end(),
__y.begin(), __y.end());
}
-
- friend bool _GLIBCXX_DEPRECATED
- operator!=(const _Rb_tree& __x, const _Rb_tree& __y)
- { return !(__x == __y); }
-
- friend bool _GLIBCXX_DEPRECATED
- operator>(const _Rb_tree& __x, const _Rb_tree& __y)
- { return __y < __x; }
-
- friend bool _GLIBCXX_DEPRECATED
- operator<=(const _Rb_tree& __x, const _Rb_tree& __y)
- { return !(__y < __x); }
-
- friend bool _GLIBCXX_DEPRECATED
- operator>=(const _Rb_tree& __x, const _Rb_tree& __y)
- { return !(__x < __y); }
#endif
};