func bytes.LastIndexByte

7 uses

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

	github.com/go-pg/pg/v10
		result.go#L28: 	ind := bytes.LastIndexByte(b, ' ')

	go/scanner
		scanner.go#L294: 	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#L614: 	if i := bytes.LastIndexByte(b, '\n'); i >= 0 {

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