func unicode/utf8.RuneCountInString

9 uses

	unicode/utf8 (current package)
		utf8.go#L437: func RuneCountInString(s string) (n int) {

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

	github.com/google/go-cmp/cmp
		report_text.go#L244: 		func(r textRecord) int { return utf8.RuneCountInString(r.Key) },

	go/build
		read.go#L514: 		pos.Column += utf8.RuneCountInString(args[:n])

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

	go/doc
		comment.go#L482: 		w := utf8.RuneCountInString(f)

	go/printer
		nodes.go#L448: 		size += utf8.RuneCountInString(x.Name)

	strings
		strings.go#L20: 	l := utf8.RuneCountInString(s)
		strings.go#L44: 		return utf8.RuneCountInString(s) + 1