func unicode/utf8.RuneCountInString

5 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)

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