bufio.Writer.WriteByte (method, view implemented interface methods)
11 uses
bufio (current package)
bufio.go#L701: func (b *Writer) WriteByte(c byte) error {
bufio.go#L718: err = b.WriteByte(byte(r))
net/http
server.go#L1553: bw.WriteByte(' ')
net/textproto
writer.go#L76: bw.WriteByte('.')
writer.go#L85: bw.WriteByte('\r')
writer.go#L95: if err = bw.WriteByte(c); err != nil {
writer.go#L110: bw.WriteByte('\r')
writer.go#L113: bw.WriteByte('\n')
nhooyr.io/websocket
frame.go#L130: err = w.WriteByte(b)
frame.go#L148: err = w.WriteByte(lengthByte)
write.go#L386: bw.WriteByte(0)
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. |