type sync/atomic.Value

14 uses

	sync/atomic (current package)
		value.go#L16: type Value struct {
		value.go#L28: func (v *Value) Load() (val any) {
		value.go#L47: func (v *Value) Store(val any) {
		value.go#L90: func (v *Value) Swap(new any) (old any) {
		value.go#L135: func (v *Value) CompareAndSwap(old, new any) (swapped bool) {

	context
		context.go#L420: 	done     atomic.Value          // of chan struct{}, created lazily, closed by first cancel call

	github.com/gotd/td/internal/mtproto
		read.go#L146: 		lastErr atomic.Value

	github.com/gotd/td/telegram/internal/manager
		sync.go#L11: 	atomic.Value

	go.uber.org/atomic
		value.go#L30: 	atomic.Value

	image
		format.go#L28: 	atomicFormats atomic.Value

	internal/testlog
		log.go#L29: var logger atomic.Value

	net/http
		transport.go#L106: 	altProto atomic.Value // of nil or map[string]RoundTripper, key is URI scheme

	nhooyr.io/websocket/internal/xsync
		int64.go#L11: 	i atomic.Value

	syscall
		rlimit.go#L16: var origRlimitNofile atomic.Value // of Rlimit