abool/README.md

65 lines
1.8 KiB
Markdown
Raw Normal View History

2016-06-01 13:38:57 +03:00
# ABool :bulb:
2020-07-16 08:10:44 +03:00
2016-06-28 13:11:33 +03:00
[![Go Report Card](https://goreportcard.com/badge/github.com/tevino/abool)](https://goreportcard.com/report/github.com/tevino/abool)
2016-05-25 07:00:32 +03:00
[![GoDoc](https://godoc.org/github.com/tevino/abool?status.svg)](https://godoc.org/github.com/tevino/abool)
2020-07-16 09:02:27 +03:00
Atomic Boolean package for Go, optimized for performance yet simple to use.
2016-05-25 06:42:19 +03:00
2020-07-16 09:02:27 +03:00
Designed for cleaner code.
2016-05-25 07:06:29 +03:00
2016-05-25 06:49:42 +03:00
## Usage
```go
import "github.com/tevino/abool"
2020-07-16 08:35:52 +03:00
cond := abool.New() // default to false
2020-07-16 08:57:01 +03:00
cond.Set() // Sets to true
2020-07-16 08:35:52 +03:00
cond.IsSet() // Returns true
2020-07-16 08:57:01 +03:00
cond.UnSet() // Sets to false
2020-07-16 09:46:58 +03:00
cond.IsNotSet() // Returns true
2020-07-16 08:57:01 +03:00
cond.SetTo(any) // Sets to whatever you want
2020-07-16 08:35:52 +03:00
cond.SetToIf(new, old) // Sets to `new` only if the Boolean matches the `old`, returns whether succeeded
cond.Toggle() // Inverts the boolean then returns the value before inverting
2016-05-25 06:49:42 +03:00
// embedding
type Foo struct {
cond *abool.AtomicBool // always use pointer to avoid copy
}
```
2020-07-07 10:46:54 +03:00
## Benchmark
2016-05-25 06:42:19 +03:00
- Go 1.14.3
- Linux 4.19.0
```bash
goos: linux
goarch: amd64
2016-05-25 06:42:19 +03:00
# Read
BenchmarkMutexRead-4 86662128 14.2 ns/op
BenchmarkAtomicValueRead-4 1000000000 0.755 ns/op
BenchmarkAtomicBoolRead-4 1000000000 0.720 ns/op # <--- This package
2016-05-25 06:42:19 +03:00
# Write
BenchmarkMutexWrite-4 76237544 13.6 ns/op
BenchmarkAtomicValueWrite-4 79471124 14.9 ns/op
BenchmarkAtomicBoolWrite-4 178218270 6.73 ns/op # <--- This package
2016-06-02 06:47:41 +03:00
# CAS
BenchmarkMutexCAS-4 29416574 34.7 ns/op
BenchmarkAtomicBoolCAS-4 171900002 7.14 ns/op # <--- This package
2018-09-07 17:17:26 +03:00
# Toggle
BenchmarkMutexToggle-4 35212117 34.5 ns/op
BenchmarkAtomicBoolToggle-4 169871972 7.02 ns/op # <--- This package
2016-05-25 06:42:19 +03:00
```
2020-07-07 10:47:35 +03:00
2020-07-16 08:10:44 +03:00
## Special thanks to contributors
2020-07-07 10:47:35 +03:00
- [@barryz](https://github.com/barryz)
2020-07-16 08:10:44 +03:00
- Added the `Toggle` method