Go to the source code of this file.
|
template<class _T1 , class _T2 > |
bool _STLP_CALL | operator== (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) |
|
template<class _T1 , class _T2 > |
bool _STLP_CALL | operator< (const pair< _T1, _T2 > &__x, const pair< _T1, _T2 > &__y) |
|
template<class _T1 , class _T2 > |
pair< _T1, _T2 > _STLP_CALL | make_pair (_T1 __x, _T2 __y) |
|
template<class _Tp > |
_STLP_END_NAMESPACE _STLP_BEGIN_RELOPS_NAMESPACE bool _STLP_CALL | operator!= (const _Tp &__x, const _Tp &__y) |
|
template<class _Tp > |
bool _STLP_CALL | operator> (const _Tp &__x, const _Tp &__y) |
|
template<class _Tp > |
bool _STLP_CALL | operator<= (const _Tp &__x, const _Tp &__y) |
|
template<class _Tp > |
bool _STLP_CALL | operator>= (const _Tp &__x, const _Tp &__y) |
|
◆ make_pair()
◆ operator!=()
Definition at line 133 of file _pair.h.
134{ return !(__x == __y); }
◆ operator<()
◆ operator<=()
Definition at line 141 of file _pair.h.
142{ return !(__y < __x); }
◆ operator==()
◆ operator>()
◆ operator>=()
Definition at line 145 of file _pair.h.
146{ return !(__x < __y); }