kops/vendor/go.uber.org/atomic
Jesse Haka 1928a3934c update deps 2020-03-17 17:41:50 +02: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 update deps 2020-03-17 17:41:50 +02:00
BUILD.bazel update deps 2020-03-17 17:41:50 +02:00
LICENSE.txt - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
Makefile update deps 2020-03-17 17:41:50 +02:00
README.md update deps 2020-03-17 17:41:50 +02:00
atomic.go - adding the dependencies for the node authorization service 2018-07-06 20:14:35 +01:00
error.go update deps 2020-03-17 17:41:50 +02: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.