# Functions
NewBool creates a Bool.
NewDuration creates a Duration.
NewFloat32 creates a Float32.
NewFloat64 creates a Float64.
NewInt32 creates an Int32.
NewInt64 creates an Int64.
NewUint32 creates a Uint32.
NewUint64 creates a Uint64.
# Type aliases
Bool is an atomic Boolean.
Duration is an atomic wrapper around time.Duration https://godoc.org/time#Duration.
Float32 is an atomic wrapper around float32.
Float64 is an atomic wrapper around float64.
Int32 is an atomic wrapper around an int32.
Int64 is an atomic wrapper around an int64.
Uint32 is an atomic wrapper around an uint32.
Uint64 is an atomic wrapper around a uint64.
Value shadows the type of the same name from sync/atomic https://godoc.org/sync/atomic#Value.