func unicode/utf8.EncodeRune
13 uses
unicode/utf8 (current package)
utf8.go#L342: func EncodeRune(p []byte, r rune) int {
bufio
bufio.go#L735: size = utf8.EncodeRune(b.buf[b.n:], r)
bytes
bytes.go#L155: n := utf8.EncodeRune(b[:], r)
encoding/json
decode.go#L1275: w += utf8.EncodeRune(b[w:], dec)
decode.go#L1281: w += utf8.EncodeRune(b[w:], rr)
decode.go#L1298: w += utf8.EncodeRune(b[w:], rr)
fmt
format.go#L162: utf8.EncodeRune(buf[i:], rune(u))
vendor/golang.org/x/text/unicode/bidi
prop.go#L63: n := utf8.EncodeRune(buf[:], r)
vendor/golang.org/x/text/unicode/norm
composition.go#L280: sz := utf8.EncodeRune(rb.byte[bn:], rune(r))
composition.go#L289: sz := utf8.EncodeRune(rb.byte[bn:], rune(r))
composition.go#L399: utf8.EncodeRune(buf, jamoLBase+r/jamoVCount)
composition.go#L400: utf8.EncodeRune(buf[JamoUTF8Len:], jamoVBase+r%jamoVCount)
composition.go#L402: utf8.EncodeRune(buf[2*JamoUTF8Len:], jamoTBase+x)
 |
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. |