View source code
Display the source code in core/atomic.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

core.atomic.cas - multiple declarations

Function cas

Stores 'writeThis' to the memory referenced by 'here' if the value referenced by 'here' is equal to 'ifThis'. This operation is both lock-free and atomic.

bool cas(T, V1, V2) (
  shared(T)* here,
  const V1 ifThis,
  V2 writeThis
) pure nothrow @nogc @safe
if (!is(T == class) && !is(T U : U*) && __traits(compiles, () { *here = writeThis; } ));

bool cas(T, V1, V2) (
  shared(T)* here,
  const shared(V1) ifThis,
  shared(V2) writeThis
) pure nothrow @nogc @safe
if (is(T == class) && __traits(compiles, () { *here = writeThis; } ));

bool cas(T, V1, V2) (
  shared(T)* here,
  const shared(V1)* ifThis,
  shared(V2)* writeThis
) pure nothrow @nogc @safe
if (is(T U : U*) && __traits(compiles, () { *here = writeThis; } ));

Parameters

NameDescription
here The address of the destination variable.
writeThis The value to store.
ifThis The comparison value.

Returns

true if the store occurred, false if not.

Function cas

Stores 'writeThis' to the memory referenced by 'here' if the value referenced by 'here' is equal to 'ifThis'. This operation is both lock-free and atomic.

bool cas(T, V1, V2) (
  shared(T)* here,
  const V1 ifThis,
  V2 writeThis
) pure nothrow @nogc @safe
if (!is(T == class) && !is(T U : U*) && __traits(compiles, () { *here = writeThis; } ));

bool cas(T, V1, V2) (
  shared(T)* here,
  const shared(V1) ifThis,
  shared(V2) writeThis
) pure nothrow @nogc @safe
if (is(T == class) && __traits(compiles, () { *here = writeThis; } ));

bool cas(T, V1, V2) (
  shared(T)* here,
  const shared(V1)* ifThis,
  shared(V2)* writeThis
) pure nothrow @nogc @safe
if (is(T U : U*) && __traits(compiles, () { *here = writeThis; } ));

Parameters

NameDescription
here The address of the destination variable.
writeThis The value to store.
ifThis The comparison value.

Returns

true if the store occurred, false if not.

Authors

Sean Kelly, Alex Rønne Petersen

License

Boost License 1.0