func unicode/utf8.DecodeLastRuneInString

9 uses

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

	go/doc/comment
		parse.go#L582: 	r, _ = utf8.DecodeLastRuneInString(line)
		parse.go#L841: 		r, _ := utf8.DecodeLastRuneInString(before)

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

	strings
		strings.go#L266: 			r, size := utf8.DecodeLastRuneInString(s[:i])
		strings.go#L275: 		r, size := utf8.DecodeLastRuneInString(s[:i])
		strings.go#L939: 		r, size := utf8.DecodeLastRuneInString(s[0:i])
		strings.go#L1077: 			r, n = utf8.DecodeLastRuneInString(s)

	text/template/parse
		lex.go#L160: 		r, w := utf8.DecodeLastRuneInString(l.input[:l.pos])