func internal/bytealg.LastIndexByteString

12 uses

	internal/bytealg (current package)
		lastindexbyte_generic.go#L16: func LastIndexByteString(s string, c byte) int {

	embed
		embed.go#L191: 	i := bytealg.LastIndexByteString(name, '/')

	net
		dial.go#L249: 	i := bytealg.LastIndexByteString(network, ':')
		ipsock.go#L176: 	i := bytealg.LastIndexByteString(hostport, ':')
		ipsock.go#L223: 	if i := bytealg.LastIndexByteString(s, '%'); i > 0 {

	net/netip
		netip.go#L1076: 	i := bytealg.LastIndexByteString(s, ':')
		netip.go#L1339: 	i := bytealg.LastIndexByteString(s, '/')

	os
		tempfile.go#L70: 	if pos := bytealg.LastIndexByteString(pattern, '*'); pos != -1 {

	path
		path.go#L146: 	i := bytealg.LastIndexByteString(path, '/')
		path.go#L201: 	if i := bytealg.LastIndexByteString(path, '/'); i >= 0 {

	strings
		strings.go#L87: 		return bytealg.LastIndexByteString(s, substr[0])
		strings.go#L231: 	return bytealg.LastIndexByteString(s, c)