kops/vendor/go.uber.org/atomic
Mike Splain 0cf516694e Update dependencies and BUILD.bazel scripts
For updated importpath
2018-09-17 09:57:31 -04:00
..
.codecov.yml - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
.gitignore - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
.travis.yml - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
BUILD.bazel Update dependencies and BUILD.bazel scripts 2018-09-17 09:57:31 -04:00
LICENSE.txt - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
Makefile - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
README.md - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
atomic.go - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
glide.lock - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
glide.yaml - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
string.go - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01: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](LICENSE.txt).