func unicode/utf8.RuneStart
11 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 }
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-- {
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#L557: for ; p >= 0 && !utf8.RuneStart(buf[p]); p-- {
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)