func internal/bytealg.LastIndexByteString
11 uses
internal/bytealg (current package)
lastindexbyte_generic.go#L16: func LastIndexByteString(s string, c byte) int {
net
dial.go#L300: 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#L1090: i := bytealg.LastIndexByteString(s, ':')
netip.go#L1368: 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#L88: return bytealg.LastIndexByteString(s, substr[0])
strings.go#L286: return bytealg.LastIndexByteString(s, c)