atomicExchange

Exchange exchangeWith with the memory referenced by here. This operation is both lock-free and atomic.

  1. T atomicExchange(T* here, V exchangeWith)
  2. TailShared!T atomicExchange(shared(T)* here, V exchangeWith)
    pure nothrow @nogc @trusted
    TailShared!T
    atomicExchange
    (
    shared(T)* here
    ,)
    if (
    !is(T == class) &&
    !is(T == interface)
    )
    in (atomicPtrIsProperlyAligned(here), "Argument `here` is not properly aligned")
  3. shared(T) atomicExchange(shared(T)* here, shared(V) exchangeWith)
  4. T arg;

Parameters

here
Type: shared(T)*

The address of the destination variable.

exchangeWith
Type: V

The value to exchange.

Return Value

Type: TailShared!T

The value held previously by here.

Suggestion Box / Bug Report