operator==(std::stop_token)
From cppreference.com
< cpp | thread | stop token
C++
Concurrency support library
|
|
std::stop_token
Member functions | ||||
Modifiers | ||||
Observers | ||||
Non-member functions | ||||
operator== |
friend
bool operator==
(
const stop_token& lhs, const stop_token& rhs )
noexcept
;
|
(since C++20) | |
Compares two stop_token
values.
This function is not visible to ordinary unqualified or qualified lookup, and can only be found by argument-dependent lookup
The !=
operator is synthesized from operator==
.
Parameters
lhs, rhs | - | stop_token s to compare
|
Return value
true if lhs and rhs have the same associated stop-state, or both have no associated stop-state, otherwise false