Go to the source code of this file.
◆ operator<()
Definition at line 15 of file _relops_cont.h.
16 {
18 __y.begin(), __y.end());
19}
_STLP_BEGIN_NAMESPACE bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2)
◆ operator==()
Definition at line 7 of file _relops_cont.h.
8 {
9 return __x.size() == __y.size() &&
10 equal(__x.begin(), __x.end(), __y.begin());
11}