Add package description

This commit is contained in:
Tevin Zhang 2016-05-25 12:06:29 +08:00
parent f4ceb28fe2
commit eedf32b55b
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,8 @@
:bulb: Atomic boolean library for Golang, optimized for performance yet simple to use. :bulb: Atomic boolean library for Golang, optimized for performance yet simple to use.
Use this for cleaner code.
## Usage ## Usage
```go ```go

View File

@ -1,3 +1,5 @@
// Package abool provides an atomic boolean type for cleaner code and
// better performance.
package abool package abool
import "sync/atomic" import "sync/atomic"