type go.uber.org/atomic.Uint32
17 uses
go.uber.org/atomic (current package)
bool.go#L33: v Uint32
float32.go#L34: v Uint32
uint32.go#L32: type Uint32 struct {
uint32.go#L39: func NewUint32(val uint32) *Uint32 {
uint32.go#L40: return &Uint32{v: val}
uint32.go#L44: func (i *Uint32) Load() uint32 {
uint32.go#L49: func (i *Uint32) Add(delta uint32) uint32 {
uint32.go#L54: func (i *Uint32) Sub(delta uint32) uint32 {
uint32.go#L59: func (i *Uint32) Inc() uint32 {
uint32.go#L64: func (i *Uint32) Dec() uint32 {
uint32.go#L71: func (i *Uint32) CAS(old, new uint32) (swapped bool) {
uint32.go#L76: func (i *Uint32) CompareAndSwap(old, new uint32) (swapped bool) {
uint32.go#L81: func (i *Uint32) Store(val uint32) {
uint32.go#L86: func (i *Uint32) Swap(val uint32) (old uint32) {
uint32.go#L91: func (i *Uint32) MarshalJSON() ([]byte, error) {
uint32.go#L96: func (i *Uint32) UnmarshalJSON(b []byte) error {
uint32.go#L106: func (i *Uint32) String() string {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |