func strings.SplitN

5 uses

	strings (current package)
		strings.go#L273: func SplitN(s, sep string, n int) []string { return genSplit(s, sep, 0, n) }

	mime
		mediatype.go#L241: 	sv := strings.SplitN(v, "'", 3)

	net/http
		transport.go#L1714: 			f := strings.SplitN(resp.Status, " ", 2)

	src.elv.sh/pkg/eval/mods/platform
		platform.go#L71: 	parts := strings.SplitN(hostname, ".", 2)

	src.elv.sh/pkg/eval/mods/str
		str.go#L358: 	parts := strings.SplitN(s, sep, opts.Max)