func strings.LastIndexByte

8 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#L384: 		if i := strings.LastIndexByte(domain, '.'); i == -1 {

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

	src.elv.sh/pkg/diag
		context.go#L157: 	return s[strings.LastIndexByte(s, '\n')+1:]

	src.elv.sh/pkg/eval
		builtin_special.go#L306: 		name = spec[strings.LastIndexByte(spec, '/')+1:]
		var_parse.go#L41: 	colon := strings.LastIndexByte(qname, ':')