Home | History | Annotate | Download | only in include

Lines Matching refs:pair

72 struct pair {
78 pair() : first(), second() {}
79 pair(const _T1& __a, const _T2& __b) : first(__a), second(__b) {}
82 pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {}
86 inline bool operator==(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
92 inline bool operator<(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y)
99 inline bool operator!=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
104 inline bool operator>(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
109 inline bool operator<=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
114 inline bool operator>=(const pair<_T1, _T2>& __x, const pair<_T1, _T2>& __y) {
119 inline pair<_T1, _T2> make_pair(_T1 __x, _T2 __y)
121 return pair<_T1, _T2>(__x, __y);