Separate files for each atomic type

As in #73, separate each atomic type into its own file to ease review of
transition to generated code.

After moving every atomic to its own file, the atomic.go file serves
only as documentation, so rename it to doc.go.
11 files changed
tree: 7f22331721698d60874c88e11771f6381a325088
  1. .github/
  2. internal/
  3. .codecov.yml
  4. .gitignore
  5. .travis.yml
  6. assert_test.go
  7. bool.go
  8. bool_test.go
  9. CHANGELOG.md
  10. doc.go
  11. duration.go
  12. duration_test.go
  13. error.go
  14. error_ext.go
  15. error_test.go
  16. example_test.go
  17. float64.go
  18. float64_test.go
  19. gen.go
  20. go.mod
  21. go.sum
  22. int32.go
  23. int32_test.go
  24. int64.go
  25. int64_test.go
  26. LICENSE.txt
  27. Makefile
  28. nocmp.go
  29. nocmp_test.go
  30. README.md
  31. stress_test.go
  32. string.go
  33. string_ext.go
  34. string_test.go
  35. tools_test.go
  36. uint32.go
  37. uint32_test.go
  38. uint64.go
  39. uint64_test.go
  40. value.go
  41. value_test.go
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@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.