func unicode/utf8.FullRune
5 uses
unicode/utf8 (current package)
utf8.go#L104: func FullRune(p []byte) bool {
bufio
bufio.go#L306: for b.r+utf8.UTFMax > b.w && !utf8.FullRune(b.buf[b.r:b.w]) && b.err == nil && b.w-b.r < len(b.buf) {
scan.go#L325: if !atEOF && !utf8.FullRune(data) {
fmt
scan.go#L349: for n = 1; !utf8.FullRune(r.buf[:n]); n++ {
vendor/golang.org/x/text/transform
transform.go#L516: if !atEOF && !utf8.FullRune(src) {
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |