|
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
value_type exchange( value_type desired, std::memory_order order= | (constexpr since C++26) | |
Atomically replaces the value of the referenced object withdesired. The operation is a read-modify-write operation. Memory is affected according to the value oforder.
This overload participates in overload resolution only ifstd::is_const_v<T> isfalse.
| desired | - | value to assign |
| order | - | memory order constraints to enforce |
The value of the referenced object before the call.
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
| DR | Applied to | Behavior as published | Correct behavior |
|---|---|---|---|
| LWG 3508 (P3323R1) | C++20 | exchange was meaningless forconst T | constrained to accept only non-constT |