type go.uber.org/atomic.Uintptr
15 uses
go.uber.org/atomic (current package)
uintptr.go#L32: type Uintptr struct {
uintptr.go#L39: func NewUintptr(val uintptr) *Uintptr {
uintptr.go#L40: return &Uintptr{v: val}
uintptr.go#L44: func (i *Uintptr) Load() uintptr {
uintptr.go#L49: func (i *Uintptr) Add(delta uintptr) uintptr {
uintptr.go#L54: func (i *Uintptr) Sub(delta uintptr) uintptr {
uintptr.go#L59: func (i *Uintptr) Inc() uintptr {
uintptr.go#L64: func (i *Uintptr) Dec() uintptr {
uintptr.go#L71: func (i *Uintptr) CAS(old, new uintptr) (swapped bool) {
uintptr.go#L76: func (i *Uintptr) CompareAndSwap(old, new uintptr) (swapped bool) {
uintptr.go#L81: func (i *Uintptr) Store(val uintptr) {
uintptr.go#L86: func (i *Uintptr) Swap(val uintptr) (old uintptr) {
uintptr.go#L91: func (i *Uintptr) MarshalJSON() ([]byte, error) {
uintptr.go#L96: func (i *Uintptr) UnmarshalJSON(b []byte) error {
uintptr.go#L106: func (i *Uintptr) 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. |