2016-06-01 13:38:57 +03:00
|
|
|
# ABool :bulb:
|
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)
|
|
|
|
|
2016-06-01 13:38:57 +03:00
|
|
|
Atomic Boolean library for Golang, 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"
|
|
|
|
|
|
|
|
cond := abool.New() // default to false
|
|
|
|
|
|
|
|
cond.Set() // set to true
|
|
|
|
cond.IsSet() // returns true
|
|
|
|
cond.UnSet() // set to false
|
|
|
|
cond.SetTo(true) // set to whatever you want
|
|
|
|
|
|
|
|
|
|
|
|
// embedding
|
|
|
|
type Foo struct {
|
|
|
|
cond *abool.AtomicBool // always use pointer to avoid copy
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2016-05-25 06:42:19 +03:00
|
|
|
## Benchmark:
|
|
|
|
|
|
|
|
- Golang 1.6.2
|
|
|
|
- OS X 10.11.4
|
|
|
|
|
2016-05-25 06:49:42 +03:00
|
|
|
```shell
|
2016-05-25 06:42:19 +03:00
|
|
|
# Read
|
|
|
|
BenchmarkMutexRead-4 100000000 21.1 ns/op
|
|
|
|
BenchmarkAtomicValueRead-4 200000000 6.33 ns/op
|
2016-05-25 06:49:42 +03:00
|
|
|
BenchmarkAtomicBoolRead-4 300000000 4.28 ns/op # <--- This package
|
2016-05-25 06:42:19 +03:00
|
|
|
|
|
|
|
# Write
|
|
|
|
BenchmarkMutexWrite-4 100000000 21.7 ns/op
|
2016-05-25 06:49:42 +03:00
|
|
|
BenchmarkAtomicValueWrite-4 30000000 47.8 ns/op
|
|
|
|
BenchmarkAtomicBoolWrite-4 200000000 9.83 ns/op # <--- This package
|
2016-05-25 06:42:19 +03:00
|
|
|
```
|
|
|
|
|