func strings.LastIndexByte

17 uses

	strings (current package)
		strings.go#L82: 		return LastIndexByte(s, substr[0])
		strings.go#L225: func LastIndexByte(s string, c byte) int {

	crypto/x509
		verify.go#L361: 		if i := strings.LastIndexByte(domain, '.'); i == -1 {

	github.com/golang/protobuf/proto
		registry.go#L119: 	if i := strings.LastIndexByte(s, '.'); i >= 0 {

	github.com/google/go-cmp/cmp/internal/function
		func.go#L93: 		if i := strings.LastIndexByte(fullName, '('); inParen && i >= 0 {

	go.uber.org/zap/zapcore
		entry.go#L119: 	idx := strings.LastIndexByte(ec.File, '/')
		entry.go#L124: 	idx = strings.LastIndexByte(ec.File[:idx], '/')

	go/doc
		example.go#L507: 		for i := len(ex.Name); i >= 0; i = strings.LastIndexByte(ex.Name[:i], '_') {

	go/printer
		nodes.go#L1061: 		if i := strings.LastIndexByte(x, 'E'); i >= 0 {
		nodes.go#L1075: 		if i := strings.LastIndexByte(x, 'P'); i >= 0 {
		nodes.go#L1080: 		i := strings.LastIndexByte(x, 'P')

	google.golang.org/protobuf/reflect/protoreflect
		proto.go#L485: 	if i := strings.LastIndexByte(string(n), '.'); i >= 0 {
		proto.go#L494: 	if i := strings.LastIndexByte(string(n), '.'); i >= 0 {

	google.golang.org/protobuf/reflect/protoregistry
		registry.go#L647: 	if i := strings.LastIndexByte(url, '/'); i >= 0 {

	google.golang.org/protobuf/types/known/anypb
		any.pb.go#L343: 	if i := strings.LastIndexByte(url, '/'); i >= 0 {

	net/url
		url.go#L1015: 			index := strings.LastIndexByte(str, '/')
		url.go#L1151: 	colon := strings.LastIndexByte(host, ':')