bufio.Writer.WriteByte (method)

21 uses

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

	encoding/xml
		marshal.go#L239: 			p.WriteByte(' ')
		marshal.go#L701: 	p.WriteByte('<')
		marshal.go#L707: 		p.WriteByte('"')
		marshal.go#L716: 		p.WriteByte(' ')
		marshal.go#L719: 			p.WriteByte(':')
		marshal.go#L724: 		p.WriteByte('"')
		marshal.go#L726: 	p.WriteByte('>')
		marshal.go#L746: 	p.WriteByte('<')
		marshal.go#L747: 	p.WriteByte('/')
		marshal.go#L749: 	p.WriteByte('>')
		marshal.go#L923: 				p.WriteByte(' ')
		marshal.go#L979: 		p.WriteByte('\n')

	github.com/go-git/go-git/v5/plumbing/format/packfile
		scanner.go#L438: 		return b, r.wbuf.WriteByte(b)

	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')