bufio.Writer.WriteByte (method, view implemented interface methods)

20 uses

	bufio (current package)
		bufio.go#L687: func (b *Writer) WriteByte(c byte) error {
		bufio.go#L704: 		err = b.WriteByte(byte(r))

	encoding/xml
		marshal.go#L239: 			p.WriteByte(' ')
		marshal.go#L705: 	p.WriteByte('<')
		marshal.go#L711: 		p.WriteByte('"')
		marshal.go#L720: 		p.WriteByte(' ')
		marshal.go#L723: 			p.WriteByte(':')
		marshal.go#L728: 		p.WriteByte('"')
		marshal.go#L730: 	p.WriteByte('>')
		marshal.go#L750: 	p.WriteByte('<')
		marshal.go#L751: 	p.WriteByte('/')
		marshal.go#L753: 	p.WriteByte('>')
		marshal.go#L927: 				p.WriteByte(' ')
		marshal.go#L983: 		p.WriteByte('\n')

	net/http
		server.go#L1520: 		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')