jason 075d766964 first | 3 anni fa | |
---|---|---|
.. | ||
.github | 3 anni fa | |
scripts | 3 anni fa | |
.codecov.yml | 3 anni fa | |
.gitignore | 3 anni fa | |
.travis.yml | 3 anni fa | |
LICENSE.txt | 3 anni fa | |
Makefile | 3 anni fa | |
README.md | 3 anni fa | |
atomic.go | 3 anni fa | |
atomic_test.go | 3 anni fa | |
error.go | 3 anni fa | |
error_test.go | 3 anni fa | |
example_test.go | 3 anni fa | |
glide.lock | 3 anni fa | |
glide.yaml | 3 anni fa | |
stress_test.go | 3 anni fa | |
string.go | 3 anni fa | |
string_test.go | 3 anni fa |
Simple wrappers for primitive types to enforce atomic access.
go get -u go.uber.org/atomic
The standard library's sync/atomic
is powerful, but it's easy to forget which
variables must be accessed atomically. go.uber.org/atomic
preserves all the
functionality of the standard library, but wraps the primitive types to
provide a safer, more convenient API.
var atom atomic.Uint32
atom.Store(42)
atom.Sub(2)
atom.CAS(40, 11)
See the documentation for a complete API specification.
Stable.
Released under the MIT License.