func strings.NewReader
7 uses
strings (current package)
reader.go#L160: func NewReader(s string) *Reader { return &Reader{s, 0, -1} }
math/big
floatconv.go#L270: r := strings.NewReader(s)
int.go#L496: 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#L293: resp.Body = io.NopCloser(strings.NewReader(""))
client.go#L895: return c.Post(url, "application/x-www-form-urlencoded", strings.NewReader(data.Encode()))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |