func strings.IndexRune
25 uses
strings (current package)
strings.go#L72: return IndexRune(s, r) >= 0
strings.go#L121: func IndexRune(s string, r rune) int {
strings.go#L152: return IndexRune(s, r)
strings.go#L165: if IndexRune(chars, c) >= 0 {
strings.go#L185: if IndexRune(chars, rc) >= 0 {
strings.go#L217: if IndexRune(chars, r) >= 0 {
strings.go#L831: return func(r rune) bool { return IndexRune(cutset, r) >= 0 }
cloud.google.com/go/logging/apiv2
doc.go#L84: return strings.IndexRune("0123456789.", r) < 0
encoding/xml
xml.go#L2048: idx = strings.IndexRune(v[1:], rune(v[0]))
github.com/google/safehtml
trustedresourceurl.go#L66: if i := strings.IndexRune(url, '?'); i != -1 {
github.com/jackc/pgconn
config.go#L451: eqIdx := strings.IndexRune(s, '=')
github.com/lib/pq
conn.go#L1503: end := strings.IndexRune(name, 0)
encode.go#L359: monSep := strings.IndexRune(str, '-')
go/doc
comment.go#L239: i := strings.IndexRune(b, '\'')
comment.go#L251: i := strings.IndexRune(b, '.')
golang.org/x/net/html
doctype.go#L50: q := strings.IndexRune(s, rune(quote))
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
render.go#L352: i := strings.IndexRune(b, '\'')
render.go#L364: i := strings.IndexRune(b, '.')
golang.org/x/pkgsite/internal/proxy
test_helper.go#L77: i := strings.IndexRune(modver, '@')
golang.org/x/pkgsite/internal/stdlib
stdlib.go#L142: i := strings.IndexRune(tag, '.')
google.golang.org/api/googleapi
googleapi.go#L279: if i := strings.IndexRune(relstr, ':'); i > 0 {
html/template
attr.go#L146: } else if colon := strings.IndexRune(name, ':'); colon != -1 {
url.go#L49: if i := strings.IndexRune(s, ':'); i >= 0 && !strings.ContainsRune(s[:i], '/') {
regexp/syntax
parse.go#L961: end := strings.IndexRune(t, '>')
parse.go#L1475: end := strings.IndexRune(s, '}')
 |
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. |