type sync/atomic.Value

12 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#L134: func (v *Value) CompareAndSwap(old, new any) (swapped bool) {

	context
		context.go#L435: 	done     atomic.Value          // of chan struct{}, created lazily, closed by first cancel call
		context.go#L437: 	err      atomic.Value          // set to non-nil by the first cancel call

	github.com/gotd/td/mtproto
		read.go#L151: 		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

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