The OpenD Programming Language

atomicFetchAnd

Atomically performs and AND operation between mod and the value referenced by val and returns the value val held previously. This operation is both lock-free and atomic.

  1. T atomicFetchAnd(T val, T mod)
    pragma(inline, true) pure nothrow @nogc @trusted
    T
    atomicFetchAnd
    (
    ref return scope T val
    ,
    T mod
    )
    if (
    (
    __traits(isIntegral, T) ||
    is(T == U*,
    U
    )
    )
    &&
    !is(T == shared)
    )
  2. T atomicFetchAnd(T val, T mod)

Parameters

val T

Reference to the value to modify.

mod T

The value to perform and operation.

Return Value

Type: T

The value held previously by val.

Meta