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 std::atomic<T>::is_always_lock_free is false and overload (2) participates in overload resolution. |
(since C++20) |
[edit] Parameters
(none)
[edit] Return value
The current value of the atomic variable.
[edit] See also
atomically obtains the value of the atomic object (public member function) |