func bytes.Index
10 uses
bytes (current package)
bytes.go#L66: i := Index(s, sep)
bytes.go#L77: return Index(b, subslice) != -1
bytes.go#L156: return Index(s, b[:n])
bytes.go#L342: m := Index(s, sep)
bytes.go#L1144: j += Index(s[start:], old)
bytes.go#L1250: func Index(s, sep []byte) int {
bytes.go#L1344: if i := Index(s, sep); i >= 0 {
encoding/pem
pem.go#L142: endIndex = bytes.Index(rest, pemEnd)
mime/multipart
multipart.go#L258: if i := bytes.Index(buf, nlDashBoundary); i >= 0 {
regexp
regexp.go#L452: return bytes.Index(i.str[pos:], re.prefixBytes)
 |
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. |