Lines Matching refs:__y
231 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
233 return _VSTD::equal(__x.__elems_, __x.__elems_ + _Size, __y.__elems_);
239 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
241 return !(__x == __y);
247 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
249 …return _VSTD::lexicographical_compare(__x.__elems_, __x.__elems_ + _Size, __y.__elems_, __y.__elem…
255 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
257 return __y < __x;
263 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
265 return !(__y < __x);
271 operator>=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
273 return !(__x < __y);
284 swap(array<_Tp, _Size>& __x, array<_Tp, _Size>& __y)
285 _NOEXCEPT_(noexcept(__x.swap(__y)))
287 __x.swap(__y);