func bytes.LastIndexByte

3 uses

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

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

	net/url
		url.go#L1053: 			if i := bytes.LastIndexByte(dst[1:], '/'); i >= 0 {