func bytes.Index
10 uses
bytes (current package)
bytes.go#L65: i := Index(s, sep)
bytes.go#L76: return Index(b, subslice) != -1
bytes.go#L178: return Index(s, b[:n])
bytes.go#L364: m := Index(s, sep)
bytes.go#L1156: j += Index(s[start:], old)
bytes.go#L1262: func Index(s, sep []byte) int {
bytes.go#L1356: 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#L458: return bytes.Index(i.str[pos:], re.prefixBytes)
|
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. |