net/textproto.Reader.R (field)
15 uses
net/textproto (current package)
reader.go#L20: R *bufio.Reader
reader.go#L32: return &Reader{R: r}
reader.go#L57: l, more, err := r.R.ReadLine()
reader.go#L149: if r.R.Buffered() > 1 {
reader.go#L150: peek, _ := r.R.Peek(2)
reader.go#L177: c, err := r.R.ReadByte()
reader.go#L183: r.R.UnreadByte()
reader.go#L335: br := d.r.R
reader.go#L496: if buf, err := r.R.Peek(1); err == nil && (buf[0] == ' ' || buf[0] == '\t') {
reader.go#L568: r.R.Peek(1) // force a buffer load if empty
reader.go#L569: s := r.R.Buffered()
reader.go#L573: peek, _ := r.R.Peek(s)
textproto.go#L68: Reader: Reader{R: bufio.NewReader(conn)},
net/http
request.go#L994: tr.R = br
request.go#L1001: r.R = nil
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |