prometheus-adapter/vendor/go.uber.org/atomic
Johannes Würbach ab00b207af
Re-vendor
2020-09-27 22:15:35 +02:00
..
.codecov.yml vendor: Update vendor logic 2020-04-08 14:34:43 -04:00
.gitignore vendor: Update vendor logic 2020-04-08 14:34:43 -04:00
.travis.yml Re-vendor 2020-09-27 22:15:35 +02:00
atomic.go vendor: Update vendor logic 2020-04-08 14:34:43 -04:00
error.go Re-vendor 2020-09-27 22:15:35 +02:00
glide.lock vendor: Update vendor logic 2020-04-08 14:34:43 -04:00
glide.yaml vendor: Update vendor logic 2020-04-08 14:34:43 -04:00
LICENSE.txt vendor: Update vendor logic 2020-04-08 14:34:43 -04:00
Makefile Re-vendor 2020-09-27 22:15:35 +02:00
README.md Re-vendor 2020-09-27 22:15:35 +02:00
string.go vendor: Update vendor logic 2020-04-08 14:34:43 -04:00

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.