std::thread_id - Man Page
std::thread::id
Synopsis
#include <thread>
Public Member Functions
id (native_handle_type __id)
Friends
struct hash< id >
bool operator< (id __x, id __y) noexcept
template<class _CharT , class _Traits > basic_ostream< _CharT, _Traits > & operator<< (basic_ostream< _CharT, _Traits > &__out, id __id)
bool operator== (id __x, id __y) noexcept
class thread
Related Functions
(Note that these are not member functions.)
bool operator== (thread::id __x, thread::id __y) noexcept
bool operator!= (thread::id __x, thread::id __y) noexcept
bool operator< (thread::id __x, thread::id __y) noexcept
bool operator<= (thread::id __x, thread::id __y) noexcept
bool operator> (thread::id __x, thread::id __y) noexcept
bool operator>= (thread::id __x, thread::id __y) noexcept
template<class _CharT , class _Traits > basic_ostream< _CharT, _Traits > & operator<< (basic_ostream< _CharT, _Traits > &__out, thread::id __id)
Detailed Description
A std::thread::id is a unique identifier for a thread.
- Since
C++11
Author
Generated automatically by Doxygen for libstdc++ from the source code.