ReactOS 0.4.15-dev-7958-gcd0bb1a
_relops_cont.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

_STLP_TEMPLATE_HEADER bool _STLP_CALL operator== (const _STLP_TEMPLATE_CONTAINER &__x, const _STLP_TEMPLATE_CONTAINER &__y)
 
_STLP_TEMPLATE_HEADER bool _STLP_CALL operator< (const _STLP_TEMPLATE_CONTAINER &__x, const _STLP_TEMPLATE_CONTAINER &__y)
 

Function Documentation

◆ operator<()

Definition at line 15 of file _relops_cont.h.

16 {
17 return lexicographical_compare(__x.begin(), __x.end(),
18 __y.begin(), __y.end());
19}
_STLP_BEGIN_NAMESPACE bool lexicographical_compare(_InputIter1 __first1, _InputIter1 __last1, _InputIter2 __first2, _InputIter2 __last2)
Definition: _algobase.c:39

◆ 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}
#define equal(x, y)
Definition: reader.cc:56