volcano/vendor/go.uber.org/atomic
xuzhonghu 3d735afa82 go mod vendor 2020-03-25 17:25:18 +08:00
..
.codecov.yml dep ensure 2020-02-04 12:55:07 +00:00
.gitignore go mod vendor 2020-03-25 17:25:18 +08:00
.travis.yml go mod vendor 2020-03-25 17:25:18 +08:00
LICENSE.txt dep ensure 2020-02-04 12:55:07 +00:00
Makefile go mod vendor 2020-03-25 17:25:18 +08:00
README.md go mod vendor 2020-03-25 17:25:18 +08:00
atomic.go go mod vendor 2020-03-25 17:25:18 +08:00
error.go dep ensure 2020-02-04 12:55:07 +00:00
glide.lock go mod vendor 2020-03-25 17:25:18 +08:00
glide.yaml go mod vendor 2020-03-25 17:25:18 +08:00
string.go dep ensure 2020-02-04 12:55:07 +00:00

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.