func unicode/utf8.RuneLen

11 uses

	unicode/utf8 (current package)
		utf8.go#L321: func RuneLen(r rune) int {

	bytes
		bytes.go#L565: 			rl := utf8.RuneLen(r)

	fmt
		format.go#L158: 		i -= utf8.RuneLen(rune(u))
		scan.go#L334: 		size = utf8.RuneLen(rr)

	github.com/evanw/esbuild/internal/css_printer
		css_printer.go#L451: 			if next := utf8.RuneLen(c); next < len(remainingText) {
		css_printer.go#L562: 		mayNeedWhitespaceAfter := whitespace == mayNeedWhitespaceAfter && escape != escapeNone && i+utf8.RuneLen(c) == len(text)

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L191: 			lenEstimate += utf8.RuneLen(c)

	github.com/google/licensecheck/internal/match
		dict.go#L280: 	s := utf8.RuneLen(r)

	github.com/google/licensecheck/old
		normalize.go#L112: 		if utf8.RuneLen(l) != wid {

	regexp
		regexp.go#L279: 			l += utf8.RuneLen(r)

	strings
		strings.go#L478: 			width = utf8.RuneLen(c)