func strings.SplitSeq

7 uses

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

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

	net/http/httputil
		reverseproxy.go#L593: 		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#L2706: 	for val := range strings.SplitSeq(*cpuListStr, ",") {