Lines Matching refs:__x
229 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
231 return _VSTD::equal(__x.__elems_, __x.__elems_ + _Size, __y.__elems_);
237 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
239 return !(__x == __y);
245 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
247 …return _VSTD::lexicographical_compare(__x.__elems_, __x.__elems_ + _Size, __y.__elems_, __y.__elem…
253 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
255 return __y < __x;
261 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
263 return !(__y < __x);
269 operator>=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
271 return !(__x < __y);
281 swap(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
284 __x.swap(__y);