func unicode/utf8.AppendRune
10 uses
unicode/utf8 (current package)
utf8.go#L375: func AppendRune(p []byte, r rune) []byte {
bytes
buffer.go#L310: b.buf = utf8.AppendRune(b.buf[:m], r)
bytes.go#L563: b = utf8.AppendRune(b, r)
encoding/json
fold.go#L33: out = utf8.AppendRune(out, foldRune(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#L471: buf = utf8.AppendRune(buf, r)
strings
builder.go#L100: b.buf = utf8.AppendRune(b.buf, r)
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |