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