Lines Matching refs:y
56 friend bool operator==(thread::id x, thread::id y) noexcept;
58 friend bool operator<(thread::id x, thread::id y) noexcept;
148 inline void swap(thread& x, thread& y) noexcept
150 x.swap(y);
154 inline bool operator==(thread::id x, thread::id y) noexcept
158 return x.__cpp_thread_t == y.__cpp_thread_t;
161 inline bool operator!=(thread::id x, thread::id y) noexcept
163 return !(x == y);
166 inline bool operator<(thread::id x, thread::id y) noexcept
168 return x.__cpp_thread_t < y.__cpp_thread_t;
171 inline bool operator<=(thread::id x, thread::id y) noexcept
173 return !(y < x);
176 inline bool operator>(thread::id x, thread::id y) noexcept
178 return !(x <= y);
181 inline bool operator>=(thread::id x, thread::id y) noexcept
183 return !(x < y);