stdatomicExt

@extern
class Object
trait Matchable
class Any
object stdatomic.type

Type members

Types

type _Atomic[T] = atomic[T]
type atomic[T] = T match { case Boolean => AtomicBool case Byte => AtomicByte case UByte => AtomicUnsignedByte case CShort => AtomicShort case CUnsignedShort => AtomicUnsignedShort case CInt => AtomicInt case CUnsignedInt => AtomicUnsignedInt case CLong => AtomicLong case CUnsignedLong => AtomicUnsignedLong case CLongLong => AtomicLongLong case CUnsignedLongLong => AtomicUnsignedLongLong case Ptr[t] => AtomicPtr[t] case Any => AtomicRef[T] }