func strings.NewReader

12 uses

	strings (current package)
		reader.go#L160: func NewReader(s string) *Reader { return &Reader{s, 0, -1} }

	golang.org/x/net/http2
		frame.go#L229: 	fh, _ := readFrameHeader(make([]byte, frameHeaderLen), strings.NewReader("HTTP/1.1 "))

	golang.org/x/tools/internal/pkgbits
		decoder.go#L79: 	r := strings.NewReader(input)

	math/big
		floatconv.go#L270: 	r := strings.NewReader(s)
		int.go#L493: 	return z.setFromScanner(strings.NewReader(s), base)
		ratconv.go#L69: 		r := strings.NewReader(s[sep+1:])
		ratconv.go#L85: 	r := strings.NewReader(s)

	net/http
		client.go#L292: 		resp.Body = io.NopCloser(strings.NewReader(""))
		client.go#L904: 	return c.Post(url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))

	net/http/httputil
		dump.go#L139: 		case dr.c <- strings.NewReader("HTTP/1.1 204 No Content\r\nConnection: close\r\n\r\n"):
		dump.go#L302: var emptyBody = io.NopCloser(strings.NewReader(""))

	net/http/pprof
		pprof.go#L213: 		b = bufio.NewReader(strings.NewReader(r.URL.RawQuery))