strings.Builder.Write (method, view implemented interface methods)

7 uses

	strings (current package)
		builder.go#L89: func (b *Builder) Write(p []byte) (int, error) {

	bufio
		bufio.go#L507: 		buf.Write(fb)
		bufio.go#L509: 	buf.Write(frag)

	encoding/asn1
		asn1.go#L248: 		s.Write(strconv.AppendInt(buf, int64(v), 10))

	mime
		encodedword.go#L318: 		buf.Write(content)

	net/http
		cookie.go#L215: 		b.Write(c.Expires.UTC().AppendFormat(buf[:0], TimeFormat))
		cookie.go#L219: 		b.Write(strconv.AppendInt(buf[:0], int64(c.MaxAge), 10))