func unicode/utf8.DecodeLastRuneInString

6 uses

	unicode/utf8 (current package)
		utf8.go#L287: func DecodeLastRuneInString(s string) (r rune, size int) {

	regexp
		regexp.go#L420: 			r1, _ = utf8.DecodeLastRuneInString(i.str[:pos])

	strings
		strings.go#L210: 			r, size := utf8.DecodeLastRuneInString(s[:i])
		strings.go#L219: 		r, size := utf8.DecodeLastRuneInString(s[:i])
		strings.go#L857: 		r, size := utf8.DecodeLastRuneInString(s[0:i])
		strings.go#L995: 			r, n = utf8.DecodeLastRuneInString(s)