func bytes.IndexAny
19 uses
bytes (current package)
bytes.go#L81: return IndexAny(b, chars) >= 0
bytes.go#L181: func IndexAny(s []byte, chars string) int {
github.com/google/safehtml/template
escape.go#L670: i := bytes.IndexAny(s, delimEnds[c.delim])
escape.go#L682: if j := bytes.IndexAny(s[:i], "\"'<=`"); j >= 0 {
github.com/lib/pq
array.go#L618: i := bytes.IndexAny(v, `"\`)
github.com/russross/blackfriday/v2
html.go#L323: endOfLang := bytes.IndexAny(info, "\t ")
golang.org/x/crypto/ssh
keys.go#L88: i := bytes.IndexAny(in, " \t")
keys.go#L144: i := bytes.IndexAny(in, " \t")
keys.go#L204: i := bytes.IndexAny(in, " \t")
keys.go#L245: i = bytes.IndexAny(in, " \t")
golang.org/x/crypto/ssh/knownhosts
knownhosts.go#L171: i := bytes.IndexAny(line, "\t ")
html/template
escape.go#L731: i := bytes.IndexAny(s, delimEnds[c.delim])
escape.go#L743: if j := bytes.IndexAny(s[:i], "\"'<=`"); j >= 0 {
html.go#L208: i1 := i + bytes.IndexAny(s[i:], delimEnds[c.delim])
transition.go#L265: i := bytes.IndexAny(s, `"'/`)
transition.go#L312: i := k + bytes.IndexAny(s[k:], specials)
transition.go#L390: i := bytes.IndexAny(s, lineTerminators)
transition.go#L434: i := k + bytes.IndexAny(s[k:], `("'/`)
transition.go#L494: i := k + bytes.IndexAny(s[k:], endAndEsc)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |