func unicode/utf8.DecodeLastRuneInString

9 uses

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

	github.com/evanw/esbuild/internal/js_lexer
		js_lexer.go#L2546: 		c, size := utf8.DecodeLastRuneInString(prefix)

	github.com/sergi/go-diff/diffmatchpatch
		diff.go#L780: 	rune1, _ := utf8.DecodeLastRuneInString(one)

	go/doc
		comment.go#L227: 	r, _ = utf8.DecodeLastRuneInString(line)

	golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
		render.go#L340: 	r, _ = utf8.DecodeLastRuneInString(line)

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

	strings
		strings.go#L206: 			r, size := utf8.DecodeLastRuneInString(s[:i])
		strings.go#L215: 		r, size := utf8.DecodeLastRuneInString(s[:i])
		strings.go#L785: 		r, size := utf8.DecodeLastRuneInString(s[0:i])