net/textproto.Reader.R (field)
15 uses
net/textproto (current package)
reader.go#L22: R *bufio.Reader
reader.go#L33: return &Reader{R: r}
reader.go#L56: l, more, err := r.R.ReadLine()
reader.go#L145: if r.R.Buffered() > 1 {
reader.go#L146: peek, _ := r.R.Peek(2)
reader.go#L173: c, err := r.R.ReadByte()
reader.go#L179: r.R.UnreadByte()
reader.go#L332: br := d.r.R
reader.go#L509: if buf, err := r.R.Peek(1); err == nil && (buf[0] == ' ' || buf[0] == '\t') {
reader.go#L602: r.R.Peek(1) // force a buffer load if empty
reader.go#L603: s := r.R.Buffered()
reader.go#L607: peek, _ := r.R.Peek(s)
textproto.go#L67: Reader: Reader{R: bufio.NewReader(conn)},
net/http
request.go#L1006: tr.R = br
request.go#L1013: r.R = nil
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. |