func strings.SplitSeq

16 uses

	strings (current package)
		iter.go#L67: func SplitSeq(s, sep string) iter.Seq[string] {

	github.com/jackc/pgx/v5/pgconn
		config.go#L642: 	for host := range strings.SplitSeq(parsedURL.Host, ",") {
		require_auth.go#L81: 	for part := range strings.SplitSeq(s, ",") {

	go/ast
		ast.go#L137: 		cl := strings.SplitSeq(c, "\n")
		ast.go#L1133: 				for line := range strings.SplitSeq(comment.Text, "\n") {

	go/build
		build.go#L1699: 	for line := range strings.SplitSeq(text, "\n") {

	go/build/constraint
		expr.go#L411: 		for lit := range strings.SplitSeq(clause, ",") {

	google.golang.org/grpc/internal/envconfig
		envconfig.go#L180: 	for s := range strings.SplitSeq(v, ",") {

	internal/buildcfg
		cfg.go#L345: 	for opt := range strings.SplitSeq(envOr("GOWASM", ""), ",") {
		exp.go#L118: 		for f := range strings.SplitSeq(goexp, ",") {

	net/http
		fs.go#L1025: 	for ra := range strings.SplitSeq(s[len(b):], ",") {
		server.go#L1549: 	for f := range strings.SplitSeq(v, ",") {

	net/http/httputil
		reverseproxy.go#L663: 		for sf := range strings.SplitSeq(f, ",") {

	testing
		example.go#L69: 		gotLines := slices.Sorted(strings.SplitSeq(got, "\n"))
		example.go#L70: 		wantLines := slices.Sorted(strings.SplitSeq(want, "\n"))
		testing.go#L2826: 	for val := range strings.SplitSeq(*cpuListStr, ",") {