sync/atomic.Int64.Load (method)

5 uses

	sync/atomic (current package)
		type.go#L114: func (x *Int64) Load() int64 { return LoadInt64(&x.v) }

	github.com/coder/websocket
		netconn.go#L129: 	if nc.writeExpired.Load() == 1 {
		netconn.go#L157: 	if nc.readExpired.Load() == 1 {
		read.go#L517: 	lr.n = lr.limit.Load()
		read.go#L527: 		reason := fmt.Errorf("read limited at %d bytes", lr.limit.Load())