VictoriaMetrics/vendor/go.uber.org/atomic
Aliaksandr Valialkin 9e17b51d45
go.mod: update minimum Go version from Go 1.16 to Go 1.17
VictoriaMetrics code uses features from Go 1.17, so the minimum Go version must be increased from Go 1.16 to Go 1.17

See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/1987
2021-12-22 12:27:02 +02:00
..
.codecov.yml app/vmctl: move vmctl code from github.com/VictoriaMetrics/vmctl 2021-02-01 01:10:20 +02:00
.gitignore vendor: make vendor-update 2021-06-09 20:40:50 +03:00
bool.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
bool_ext.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
CHANGELOG.md vendor: make vendor-update 2021-07-26 16:02:46 +03:00
doc.go app/vmctl: move vmctl code from github.com/VictoriaMetrics/vmctl 2021-02-01 01:10:20 +02:00
duration.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
duration_ext.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
error.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
error_ext.go app/vmctl: move vmctl code from github.com/VictoriaMetrics/vmctl 2021-02-01 01:10:20 +02:00
float64.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
float64_ext.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
gen.go vendor: make vendor-update 2021-06-09 20:40:50 +03:00
int32.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
int64.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
LICENSE.txt app/vmctl: move vmctl code from github.com/VictoriaMetrics/vmctl 2021-02-01 01:10:20 +02:00
Makefile vendor: make vendor-update 2021-06-09 20:40:50 +03:00
nocmp.go app/vmctl: move vmctl code from github.com/VictoriaMetrics/vmctl 2021-02-01 01:10:20 +02:00
README.md vendor: make vendor-update 2021-06-09 20:40:50 +03:00
string.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
string_ext.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
time.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
time_ext.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
uint32.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
uint64.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
uintptr.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
unsafe_pointer.go vendor: make vendor-update 2021-07-26 16:02:46 +03:00
value.go app/vmctl: move vmctl code from github.com/VictoriaMetrics/vmctl 2021-02-01 01:10:20 +02: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@v1

Legacy Import Path

As of v1.5.0, the import path go.uber.org/atomic is the only supported way of using this package. If you are using Go modules, this package will fail to compile with the legacy import path path github.com/uber-go/atomic.

We recommend migrating your code to the new import path but if you're unable to do so, or if your dependencies are still using the old import path, you will have to add a replace directive to your go.mod file downgrading the legacy import path to an older version.

replace github.com/uber-go/atomic => github.com/uber-go/atomic v1.4.0

You can do so automatically by running the following command.

$ go mod edit -replace github.com/uber-go/atomic=github.com/uber-go/atomic@v1.4.0

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.