func unicode/utf8.AppendRune
13 uses
unicode/utf8 (current package)
utf8.go#L384: func AppendRune(p []byte, r rune) []byte {
bytes
buffer.go#L316: b.buf = utf8.AppendRune(b.buf[:m], r)
bytes.go#L624: b = utf8.AppendRune(b, r)
crypto/x509
parser.go#L76: buf = utf8.AppendRune(buf, rune(v))
encoding/asn1
asn1.go#L479: buf = utf8.AppendRune(buf, rune(v))
encoding/json
fold.go#L35: out = utf8.AppendRune(out, foldRune(r))
expvar
expvar.go#L412: b = utf8.AppendRune(b, r)
fmt
format.go#L474: f.pad(utf8.AppendRune(buf, r))
print.go#L96: b = utf8.AppendRune(b, verb)
print.go#L116: *b = utf8.AppendRune(*b, r)
strconv
quote.go#L80: return utf8.AppendRune(buf, r)
quote.go#L472: buf = utf8.AppendRune(buf, r)
strings
builder.go#L106: b.buf = utf8.AppendRune(b.buf, r)