func unicode/utf8.RuneCountInString

9 uses

	unicode/utf8 (current package)
		utf8.go#L440: 			return n + RuneCountInString(string(p[n:]))
		utf8.go#L447: func RuneCountInString(s string) (n int) {

	fmt
		format.go#L116: 	width := f.wid - utf8.RuneCountInString(s)

	go/constant
		value.go#L119: 	if utf8.RuneCountInString(s) > maxLen {

	go/doc/comment
		text.go#L37: 		tp.width = 80 - utf8.RuneCountInString(tp.prefix)
		text.go#L146: 		seq = wrap(words, p.width-utf8.RuneCountInString(indent))
		text.go#L251: 		total[1+i] = total[i] + utf8.RuneCountInString(s) + 1

	strings
		strings.go#L24: 	l := utf8.RuneCountInString(s)
		strings.go#L45: 		return utf8.RuneCountInString(s) + 1