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

8 uses

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

	bufio
		bufio.go#L500: 		buf.Write(fb)
		bufio.go#L502: 	buf.Write(frag)

	html/template
		js.go#L208: 			buf.Write(b[written:i])
		js.go#L215: 		buf.Write(b[written:])

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

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