jason 075d766964 first 3 жил өмнө
..
.github 075d766964 first 3 жил өмнө
scripts 075d766964 first 3 жил өмнө
.codecov.yml 075d766964 first 3 жил өмнө
.gitignore 075d766964 first 3 жил өмнө
.travis.yml 075d766964 first 3 жил өмнө
LICENSE.txt 075d766964 first 3 жил өмнө
Makefile 075d766964 first 3 жил өмнө
README.md 075d766964 first 3 жил өмнө
atomic.go 075d766964 first 3 жил өмнө
atomic_test.go 075d766964 first 3 жил өмнө
error.go 075d766964 first 3 жил өмнө
error_test.go 075d766964 first 3 жил өмнө
example_test.go 075d766964 first 3 жил өмнө
glide.lock 075d766964 first 3 жил өмнө
glide.yaml 075d766964 first 3 жил өмнө
stress_test.go 075d766964 first 3 жил өмнө
string.go 075d766964 first 3 жил өмнө
string_test.go 075d766964 first 3 жил өмнө

README.md

atomic GoDoc Build Status Coverage Status Go Report Card

Simple wrappers for primitive types to enforce atomic access.

Installation

go get -u go.uber.org/atomic

Usage

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.

Development Status

Stable.


Released under the MIT License.