func strings.IndexAny

13 uses

	strings (current package)
		strings.go#L67: 	return IndexAny(s, chars) >= 0
		strings.go#L141: func IndexAny(s, chars string) int {

	github.com/andybalholm/cascadia
		selector.go#L277: 		i := strings.IndexAny(s, " \t\r\n\f")

	github.com/evanw/esbuild/internal/resolver
		resolver.go#L253: 		suffix := strings.IndexAny(importPath, "?#")

	github.com/google/safehtml/template
		trustedsource.go#L57: 	if i := strings.IndexAny(filename, string([]rune{filepath.Separator, filepath.ListSeparator})); i != -1 {

	github.com/lib/pq
		encode.go#L399: 		fracOff := strings.IndexAny(str[fracStart:], "-+ ")

	golang.org/x/net/html
		doctype.go#L20: 	space := strings.IndexAny(s, whitespace)
		escape.go#L199: 	i := strings.IndexAny(s, escapedChars)
		escape.go#L227: 		i = strings.IndexAny(s, escapedChars)
		escape.go#L238: 	if strings.IndexAny(s, escapedChars) == -1 {

	golang.org/x/pkgsite/cmd/worker
		main.go#L221: 		i := strings.IndexAny(line, " \t")

	net/http
		request.go#L746: 	if i := strings.IndexAny(in, " /"); i != -1 {

	net/url
		url.go#L930: 		if i := strings.IndexAny(key, "&;"); i >= 0 {