func bytes.Index

9 uses

	bytes (current package)
		bytes.go#L67: 		i := Index(s, sep)
		bytes.go#L78: 	return Index(b, subslice) != -1
		bytes.go#L399: 		m := Index(s, sep)
		bytes.go#L1175: 			j := start + Index(s[start:], old)
		bytes.go#L1281: func Index(s, sep []byte) int {
		bytes.go#L1375: 	if i := Index(s, sep); i >= 0 {
		iter.go#L49: 			i := Index(s, sep)

	encoding/pem
		pem.go#L106: 		endIndex := bytes.Index(rest, pemEnd)

	mime/multipart
		multipart.go#L258: 	if i := bytes.Index(buf, nlDashBoundary); i >= 0 {