operator==,!=,<,<=,>,>=(std::thread::id)

From cppreference.com
< cpp‎ | thread‎ | thread‎ | id
 
 
Thread support library
Threads
(C++11)
this_thread namespace
(C++11)
(C++11)
(C++11)
(C++11)
Mutual exclusion
(C++11)
(C++11)
Generic lock management
(C++11)
(C++11)
(C++14)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
(C++11)
(C++11)
Condition variables
(C++11)
Futures
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
 
 
std::thread::id
Member functions
Non-member functions
operator==operator!=operator<operator<=operator>operator>=
Helper classes
 
bool operator==( thread::id lhs, thread::id rhs );
(1) (since C++11)
bool operator!=( thread::id lhs, thread::id rhs );
(2) (since C++11)
bool operator<( thread::id lhs, thread::id rhs );
(3) (since C++11)
bool operator<=( thread::id lhs, thread::id rhs );
(4) (since C++11)
bool operator>( thread::id lhs, thread::id rhs );
(5) (since C++11)
bool operator>=( thread::id lhs, thread::id rhs );
(6) (since C++11)

Compares two thread identifiers.

1-2) Checks whether lhs and rhs represent either the same thread, or no thread.
3-6) Compares lhs and rhs in such a way, that lhs and rhs are totally ordered.

Contents

[edit] Parameters

lhs, rhs - thread identifiers to compare

[edit] Return value

true whether the corresponding relation holds, false otherwise.

[edit] Exceptions

noexcept specification:  
noexcept
  

[edit] Complexity

Constant.