func strings.Index
17 uses
strings (current package)
iter.go#L49: i := Index(s, sep)
strings.go#L52: i := Index(s, substr)
strings.go#L63: return Index(s, substr) >= 0
strings.go#L309: m := Index(s, sep)
strings.go#L1156: j := start + Index(s[start:], old)
strings.go#L1265: func Index(s, substr string) int {
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#L2388: if i := strings.Index(url, "?"); i != -1 {
net/url
url.go#L488: if i := strings.Index(authority, "/"); i >= 0 {
url.go#L576: zoneIdx := strings.Index(hostname, "%25")
url.go#L606: } else if i := strings.Index(host, ":"); i != -1 {
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.8.4. (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. |