func bytes.LastIndexByte

6 uses

	bytes (current package)
		bytes.go#L130: func LastIndexByte(s []byte, c byte) int {

	go/scanner
		scanner.go#L319: 	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#L486: 	if i := bytes.LastIndexByte(name, '/'); i != -1 {
		decode.go#L658: 	if i := bytes.LastIndexByte(b, '\n'); i >= 0 {

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