abool/README.md

55 lines
1.6 KiB
Markdown
Raw Normal View History

2016-06-01 13:38:57 +03:00
# ABool :bulb:
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"
cond := abool.New() // default to false
2016-06-02 06:47:41 +03:00
cond.Set() // Set to true
cond.IsSet() // Returns true
cond.UnSet() // Set to false
cond.SetTo(true) // Set to whatever you want
cond.SetToIf(false, true) // Set to true if it is false, returns false(not set)
cond.Toggle() bool // Toggle the boolean value atomically and returns the previous value.
2016-05-25 06:49:42 +03:00
// embedding
type Foo struct {
cond *abool.AtomicBool // always use pointer to avoid copy
}
```
2016-05-25 06:42:19 +03:00
## Benchmark:
2017-09-17 09:19:28 +03:00
- Go 1.6.2
2016-05-25 06:42:19 +03:00
- 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.0 ns/op
2016-06-02 06:47:41 +03:00
BenchmarkAtomicValueRead-4 200000000 6.30 ns/op
BenchmarkAtomicBoolRead-4 300000000 4.21 ns/op # <--- This package
2016-05-25 06:42:19 +03:00
# Write
BenchmarkMutexWrite-4 100000000 21.6 ns/op
BenchmarkAtomicValueWrite-4 30000000 43.4 ns/op
2016-06-02 06:47:41 +03:00
BenchmarkAtomicBoolWrite-4 200000000 9.87 ns/op # <--- This package
# CAS
BenchmarkMutexCAS-4 30000000 44.9 ns/op
BenchmarkAtomicBoolCAS-4 100000000 11.7 ns/op # <--- This package
2018-09-07 17:17:26 +03:00
# Toggle
BenchmarkMutexToggle-4 50000000 30.7 ns/op
BenchmarkAtomicBoolToggle-4 300000000 5.27 ns/op # <--- This package
2016-05-25 06:42:19 +03:00
```