std::atomic_ref<T>::store (3) - Linux Manuals
std::atomic_ref<T>::store: std::atomic_ref<T>::store
Command to display std::atomic_ref<T>::store
manual in Linux: $ man 3 std::atomic_ref<T>::store
NAME
std::atomic_ref<T>::store - std::atomic_ref<T>::store
Synopsis
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.
Parameters
desired - the value to store into the referenced object
order - memory order constraints to enforce
Return value
(none)
See also
stores a value into the object referenced by an atomic_ref object
operator= (public member function)
Pages related to std::atomic_ref<T>::store
- std::atomic_ref<T>::atomic_ref (3) - std::atomic_ref<T>::atomic_ref
- std::atomic_ref<T>::compare_exchange_weak,std::atomic_ref<T>::compare_exchange_strong (3) - std::atomic_ref<T>::compare_exchange_weak,std::atomic_ref<T>::compare_exchange_strong
- std::atomic_ref<T>::exchange (3) - std::atomic_ref<T>::exchange
- std::atomic_ref<T>::fetch_add (3) - std::atomic_ref<T>::fetch_add
- std::atomic_ref<T>::fetch_and (3) - std::atomic_ref<T>::fetch_and
- std::atomic_ref<T>::fetch_or (3) - std::atomic_ref<T>::fetch_or
- std::atomic_ref<T>::fetch_sub (3) - std::atomic_ref<T>::fetch_sub
- std::atomic_ref<T>::fetch_xor (3) - std::atomic_ref<T>::fetch_xor
- std::atomic_ref<T>::is_always_lock_free (3) - std::atomic_ref<T>::is_always_lock_free
- std::atomic_ref<T>::is_lock_free (3) - std::atomic_ref<T>::is_lock_free
- std::atomic_ref<T>::load (3) - std::atomic_ref<T>::load
- std::atomic_ref<T>::operator++,++(int),--,--(int) (3) - std::atomic_ref<T>::operator++,++(int),--,--(int)
- std::atomic_ref<T>::operator+=,-=,&=,|=,^= (3) - std::atomic_ref<T>::operator+=,-=,&=,|=,^=
- std::atomic_ref<T>::operator= (3) - std::atomic_ref<T>::operator=
- std::atomic_ref<T>::operatorT (3) - std::atomic_ref<T>::operatorT
- std::atomic_ref<T>::required_alignment (3) - std::atomic_ref<T>::required_alignment
- std::atomic_ref (3) - std::atomic_ref
- std::atomic_...<std::shared_ptr> (3) - std::atomic_...<std::shared_ptr>