type sync/atomic.Value

11 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#L429: 	done     atomic.Value          // of chan struct{}, created lazily, closed by first cancel call

	expvar
		expvar.go#L268: 	s atomic.Value // string

	go.pact.im/x/process
		process.go#L58: 	err  atomic.Value

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

	google.golang.org/grpc
		clientconn.go#L631: 	retryThrottler     atomic.Value // Updated from service config.

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