func bytes.LastIndexByte

11 uses

	bytes (current package)
		bytes.go#L110: 		return LastIndexByte(s, sep[0])
		bytes.go#L141: func LastIndexByte(s []byte, c byte) int {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L2197: 	if e := bytes.LastIndexByte(result, 'e'); e != -1 {
		js_printer.go#L2250: 		if e := bytes.LastIndexByte(result, 'e'); e != -1 {

	github.com/go-git/go-git/v5/plumbing/object
		object.go#L92: 	open := bytes.LastIndexByte(b, '<')
		object.go#L93: 	close := bytes.LastIndexByte(b, '>')

	github.com/google/licensecheck
		scan.go#L186: 			if i := bytes.LastIndexByte(text[prev:start], '\n'); i >= 0 {

	go/scanner
		scanner.go#L289: 	i := bytes.LastIndexByte(text, ':') // look from right (Windows filenames may contain ':')

	google.golang.org/protobuf/internal/encoding/json
		decode.go#L228: 	if i := bytes.LastIndexByte(b, '\n'); i >= 0 {

	google.golang.org/protobuf/internal/encoding/text
		decode.go#L615: 	if i := bytes.LastIndexByte(b, '\n'); i >= 0 {

	mime/multipart
		multipart.go#L247: 	i := bytes.LastIndexByte(buf, nlDashBoundary[0])