func unicode/utf8.RuneCount

5 uses

	unicode/utf8 (current package)
		utf8.go#L374: func RuneCount(p []byte) int {

	bytes
		bytes.go#L58: 		return utf8.RuneCount(s) + 1
		bytes.go#L972: 	t := make([]rune, utf8.RuneCount(s))

	fmt
		format.go#L95: 	width := f.wid - utf8.RuneCount(b)

	text/tabwriter
		tabwriter.go#L420: 	b.cell.width += utf8.RuneCount(b.buf[b.pos:])