abool/README.md

60 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)
2017-09-17 09:19:28 +03:00
Atomic Boolean library for Go, optimized for performance yet simple to use.
2016-05-25 06:42:19 +03:00
2016-05-25 07:06:29 +03:00
Use this for cleaner code.
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
cond.Set() // Set to true
cond.IsSet() // Returns true
cond.UnSet() // Set to false
cond.SetTo(any) // Set to whatever you want
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
2019-07-22 08:11:38 +03:00
- Go 1.11.5
- OS X 10.14.5
2016-05-25 06:42:19 +03:00
2016-05-25 06:49:42 +03:00
```shell
2016-05-25 06:42:19 +03:00
# Read
2019-07-22 08:11:38 +03:00
BenchmarkMutexRead-4 100000000 14.7 ns/op
BenchmarkAtomicValueRead-4 2000000000 0.45 ns/op
BenchmarkAtomicBoolRead-4 2000000000 0.35 ns/op # <--- This package
2016-05-25 06:42:19 +03:00
# Write
2019-07-22 08:11:38 +03:00
BenchmarkMutexWrite-4 100000000 14.5 ns/op
BenchmarkAtomicValueWrite-4 100000000 10.5 ns/op
BenchmarkAtomicBoolWrite-4 300000000 5.21 ns/op # <--- This package
2016-06-02 06:47:41 +03:00
# CAS
2019-07-22 08:11:38 +03:00
BenchmarkMutexCAS-4 50000000 31.3 ns/op
BenchmarkAtomicBoolCAS-4 200000000 7.18 ns/op # <--- This package
2018-09-07 17:17:26 +03:00
# Toggle
2019-07-22 08:11:38 +03:00
BenchmarkMutexToggle-4 50000000 32.6 ns/op
BenchmarkAtomicBoolToggle-4 300000000 5.21 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