func strings.Index
22 uses
strings (current package)
strings.go#L51: i := Index(s, substr)
strings.go#L62: return Index(s, substr) >= 0
strings.go#L140: return Index(s, string(r))
strings.go#L254: m := Index(s, sep)
strings.go#L1115: j += Index(s[start:], old)
strings.go#L1220: func Index(s, substr string) int {
github.com/oapi-codegen/runtime
bindform.go#L212: str = str[:strings.Index(str, "]")]
bindform.go#L223: str = str[:strings.Index(str, "]")]
bindform.go#L253: key = key[:strings.Index(key, "]")]
bindform.go#L269: key = key[:strings.Index(key, "]")]
math/big
ratconv.go#L65: if sep := strings.Index(s, "/"); sep >= 0 {
mime
encodedword.go#L232: i := strings.Index(header, "=?")
encodedword.go#L244: start := strings.Index(header, "=?")
encodedword.go#L250: i := strings.Index(header[cur:], "?")
encodedword.go#L268: j := strings.Index(header[cur:], "?=")
net/http
server.go#L2320: if i := strings.Index(url, "?"); i != -1 {
net/url
url.go#L564: if i := strings.Index(authority, "/"); i >= 0 {
url.go#L643: zone := strings.Index(host[:i], "%25")
regexp
regexp.go#L405: return strings.Index(i.str[pos:], re.prefix)
regexp/syntax
parse.go#L1603: i := strings.Index(s[2:], ":]")
vendor/golang.org/x/net/idna
idna10.0.0.go#L735: if strings.Index(s, zwj) == -1 && strings.Index(s, zwnj) == -1 {
 |
The pages are generated with Golds v0.7.6. (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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |