mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-28 17:04:41 +00:00
10 lines
170 B
Nim
10 lines
170 B
Nim
import atomics
|
|
|
|
type
|
|
AtomicWithGeneric*[T] = object
|
|
value: Atomic[T]
|
|
|
|
proc initAtomicWithGeneric*[T](value: T): AtomicWithGeneric[T] =
|
|
result.value.store(value)
|
|
|