sync/atomic.Value.Store (method)

11 uses

	sync/atomic (current package)
		value.go#L47: func (v *Value) Store(val any) {

	context
		context.go#L458: 		c.done.Store(d)
		context.go#L561: 	c.err.Store(err)
		context.go#L565: 		c.done.Store(closedchan)

	github.com/gotd/td/mtproto
		read.go#L214: 				lastErr.Store(errors.Wrap(err, "consume"))

	github.com/gotd/td/telegram/internal/manager
		sync.go#L28: 	c.Value.Store(cfg)

	go.uber.org/atomic
		error.go#L50: 	x.v.Store(packError(val))
		string.go#L50: 	x.v.Store(packString(val))
		time.go#L54: 	x.v.Store(packTime(val))

	image
		format.go#L40: 	atomicFormats.Store(append(formats, format{name, magic, decode, decodeConfig}))

	net/http
		transport.go#L890: 	t.altProto.Store(newMap)