std::atomic<T>::operator T
From cppreference.com
operator T() const noexcept;
|
(1) | (since C++11) |
operator T() const volatile noexcept;
|
(2) | (since C++11) |
Atomically loads and returns the current value of the atomic variable. Equivalent to load().
|
It is deprecated if |
(since C++20) |
Parameters
(none)
Return value
The current value of the atomic variable.
See also
| atomically obtains the value of the atomic object (public member function) |