Documentation Home >> Headers >> <atomic> Header >> std::atomic >> specializations >> std::atomic<integral-type> >> std::atomic<integral-type>::store member function

Atomically store a new value.

void store(
    integral-type new_value,
    memory_order order = memory_order_seq_cst)
    volatile;

Preconditions:

The supplied order must be one of std::memory_order_relaxed, std::memory_order_release or std::memory_order_seq_cst

Effects:

Atomically store new_value in *this.

Throws:

Nothing.

Note:

This is an atomic store operation for the memory location comprising *this.

Header

#include <atomic>

See Also