func strings.IndexByte
14 uses
strings (current package)
strings.go#L117: func IndexByte(s string, c byte) int {
strings.go#L128: return IndexByte(s, byte(r))
strings.go#L1200: return IndexByte(s, substr[0])
strings.go#L1222: o := IndexByte(s[i+1:t], c0)
strings.go#L1251: o := IndexByte(s[i+1:t], c0)
go.uber.org/multierr
error.go#L288: idx := strings.IndexByte(s, '\n')
golang.org/x/sys/cpu
cpu.go#L227: i := strings.IndexByte(env, ',')
cpu.go#L236: i = strings.IndexByte(field, '=')
net/http
h2_bundle.go#L9049: p := strings.IndexByte(v, ';')
vendor/golang.org/x/net/http/httpguts
httplex.go#L140: for comma := strings.IndexByte(v, ','); comma != -1; comma = strings.IndexByte(v, ',') {
vendor/golang.org/x/net/idna
idna10.0.0.go#L569: p := strings.IndexByte(l.orig[l.curStart:], '.')
vendor/golang.org/x/sys/cpu
cpu.go#L224: i := strings.IndexByte(env, ',')
cpu.go#L233: i = strings.IndexByte(field, '=')
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |