void store( T desired, std::memory_order order = std::memory_order_seq_cst ) const noexcept; | (since C++20) |
Atomically replaces the current value of the referenced object with desired
. Memory is affected according to the value of order
.
order
must be one of std::memory_order_relaxed
, std::memory_order_release
or std::memory_order_seq_cst
. Otherwise the behavior is undefined.
desired | - | the value to store into the referenced object |
order | - | memory order constraints to enforce |
(none).
stores a value into the object referenced by an atomic_ref object (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/atomic/atomic_ref/store