W3cubDocs

/C++

operator==(std::stop_token)

[[nodiscard]] 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 when std::stop_token is an associated class of the arguments.

The != operator is synthesized from operator==.

Parameters

lhs, rhs - stop_tokens to compare

Return value

true if lhs and rhs have the same associated stop-state, or both have no associated stop-state, otherwise false.

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/thread/stop_token/operator_cmp