sing/common/atomic/types.go
2023-04-09 15:02:29 +08:00

15 lines
237 B
Go

//go:build go1.19
package atomic
import "sync/atomic"
type (
Bool = atomic.Bool
Int32 = atomic.Int32
Int64 = atomic.Int64
Uint32 = atomic.Uint32
Uint64 = atomic.Uint64
Uintptr = atomic.Uintptr
Value = atomic.Value
)