sync/atomic.Uint64.Load (method)

6 uses

	sync/atomic (current package)
		type.go#L145: func (x *Uint64) Load() uint64 { return LoadUint64(&x.v) }

	sync
		waitgroup.go#L75: 	if wg.state.Load() != state {
		waitgroup.go#L96: 		state := wg.state.Load()
		waitgroup.go#L117: 			if wg.state.Load() != 0 {

	internal/godebug
		godebug.go#L110: 	registerMetric("/godebug/non-default-behavior/"+s.Name()+":events", s.nonDefault.Load)

	net/http
		server.go#L1816: 	packedState := c.curState.Load()