func unicode/utf8.DecodeLastRune

8 uses

	unicode/utf8 (current package)
		utf8.go#L253: func DecodeLastRune(p []byte) (r rune, size int) {

	bytes
		bytes.go#L335: 			r, size := utf8.DecodeLastRune(s[:i])
		bytes.go#L352: 		r, size := utf8.DecodeLastRune(s[:i])
		bytes.go#L936: 			r, size = utf8.DecodeLastRune(s[0:i])
		bytes.go#L1103: 			r, n = utf8.DecodeLastRune(s)

	html/template
		css.go#L24: 		r, _ := utf8.DecodeLastRune(b[:i])
		js.go#L215: 	last, _ := utf8.DecodeLastRune(b)

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