func unicode/utf8.RuneStart
7 uses
unicode/utf8 (current package)
utf8.go#L265: if RuneStart(p[start]) {
utf8.go#L305: if RuneStart(s[start]) {
utf8.go#L474: func RuneStart(b byte) bool { return b&0xC0 != 0x80 }
vendor/golang.org/x/text/unicode/norm
input.go#L52: for ; p < len(in.str) && !utf8.RuneStart(in.str[p]); p++ {
input.go#L55: for ; p < len(in.bytes) && !utf8.RuneStart(in.bytes[p]); p++ {
iter.go#L187: for j = 1; j < len(d) && !utf8.RuneStart(d[j]); j++ {
normalize.go#L558: for ; p >= 0 && !utf8.RuneStart(buf[p]); p-- {
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. |