func strings.IndexFunc

7 uses

	strings (current package)
		strings.go#L78: 	return IndexFunc(s, f) >= 0
		strings.go#L916: func IndexFunc(s string, f func(rune) bool) int {

	github.com/google/go-cmp/cmp
		report_reflect.go#L386: 	if utf8.ValidString(s) && strings.IndexFunc(s, rawInvalid) < 0 {

	go/doc
		reader.go#L1007: 	if i := strings.IndexFunc(base, notIdentifier); i >= 0 {

	internal/buildcfg
		cfg.go#L316: 	i := strings.IndexFunc(v, func(r rune) bool {

	testing
		benchmark.go#L385: 	if strings.IndexFunc(unit, unicode.IsSpace) >= 0 {

	text/template
		funcs.go#L731: 	if strings.IndexFunc(s, jsIsSpecial) < 0 {