type sync/atomic.Uint32
10 uses
sync/atomic (current package)
type.go#L141: type Uint32 struct {
type.go#L147: func (x *Uint32) Load() uint32 { return LoadUint32(&x.v) }
type.go#L150: func (x *Uint32) Store(val uint32) { StoreUint32(&x.v, val) }
type.go#L153: func (x *Uint32) Swap(new uint32) (old uint32) { return SwapUint32(&x.v, new) }
type.go#L156: func (x *Uint32) CompareAndSwap(old, new uint32) (swapped bool) {
type.go#L161: func (x *Uint32) Add(delta uint32) (new uint32) { return AddUint32(&x.v, delta) }
type.go#L165: func (x *Uint32) And(mask uint32) (old uint32) { return AndUint32(&x.v, mask) }
type.go#L169: func (x *Uint32) Or(mask uint32) (old uint32) { return OrUint32(&x.v, mask) }
internal/sync
hashtriemap.go#L22: inited atomic.Uint32
os
exec.go#L50: state atomic.Uint32
 |
The pages are generated with Golds v0.8.4. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |