atomic::fetch_xor Method

Performs a bitwise exclusive or on a value and an existing value that is stored in *this.

Ty atomic<Ty>::fetch_xor (
   Ty Value,
   memory_order Order = memory_order_seq_cst
) volatile _NOEXCEPT;
Ty atomic<Ty>::fetch_xor (
   Ty Value,
   memory_order Order = memory_order_seq_cst
) _NOEXCEPT;

Parameters

Return Value

A Ty object that contains the result of the bitwise exclusive or.

Remarks

The fetch_xor method performs a read-modify-write operation to replace the stored value of *this with a bitwise exclusive or of Value and the current value that is stored in *this, and applies the memory constraints that are specified by Order.

Requirements

Header: atomic

Namespace: std

See Also

Reference

<atomic>

atomic Structure

atomic_fetch_xor_explicit Function