The OpenD Programming Language

Atomic.this

Copy constructor is disabled because an atomic cannot be passed to functions as a copy and copy it around will break the whole point of an atomic.

  1. this(T val)
  2. this(Atomic rhs)
    struct Atomic(T)
    @disable
    this
    (
    ref return scope Atomic rhs
    )

Meta