bufio.Writer.buf (field)
15 uses
bufio (current package)
bufio.go#L560: buf []byte
bufio.go#L571: if ok && len(b.buf) >= size {
bufio.go#L578: buf: make([]byte, size),
bufio.go#L589: func (b *Writer) Size() int { return len(b.buf) }
bufio.go#L607: n, err := b.wr.Write(b.buf[0:b.n])
bufio.go#L613: copy(b.buf[0:b.n-n], b.buf[n:b.n])
bufio.go#L624: func (b *Writer) Available() int { return len(b.buf) - b.n }
bufio.go#L641: n = copy(b.buf[b.n:], p)
bufio.go#L651: n := copy(b.buf[b.n:], p)
bufio.go#L665: b.buf[b.n] = c
bufio.go#L694: size = utf8.EncodeRune(b.buf[b.n:], r)
bufio.go#L706: n := copy(b.buf[b.n:], s)
bufio.go#L715: n := copy(b.buf[b.n:], s)
bufio.go#L744: m, err = r.Read(b.buf[b.n:])
 |
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. |