func strings.Join
20 uses
strings (current package)
strings.go#L428: func Join(elems []string, sep string) string {
crypto/tls
common.go#L1219: wildcardName := strings.Join(labels, ".")
crypto/x509
verify.go#L121: valid = strings.Join(c.DNSNames, ", ")
encoding/json
decode.go#L258: err.Field = strings.Join(d.errorContext.FieldStack, ".")
github.com/apapsch/go-jsonmerge/v2
merge.go#L38: pathStr := strings.Join(path, ".")
github.com/golang-jwt/jwt/v5
errors.go#L40: return strings.Join(msg, ", ")
parser.go#L84: text := strings.Join(parts[0:2], ".")
github.com/oapi-codegen/runtime
bindparam.go#L287: jsonParam := "{" + strings.Join(fields, ",") + "}"
deepobject.go#L56: prefix := "[" + strings.Join(path, "][") + "]"
deepobject.go#L88: return strings.Join(fields, "&"), nil
styleparam.go#L171: return prefix + strings.Join(parts, separator), nil
styleparam.go#L372: return prefix + strings.Join(parts, separator), nil
net/http
client.go#L797: ireqhdr.Set("Cookie", strings.Join(ss, "; "))
fs.go#L59: fi, err := stat(strings.Join(parts[:i+1], string(sep)))
h2_bundle.go#L6096: rp.header.Set("Cookie", strings.Join(cookies, "; "))
h2_bundle.go#L8359: return strings.Join(keys, ","), nil
server.go#L2632: w.Header().Set("Allow", strings.Join(allowedMethods, ", "))
transfer.go#L324: if _, err := io.WriteString(w, "Trailer: "+strings.Join(keys, ",")+"\r\n"); err != nil {
path/filepath
path_unix.go#L36: return Clean(strings.Join(elem[i:], string(Separator)))
vendor/golang.org/x/net/idna
idna10.0.0.go#L559: return strings.Join(l.slice, ".")
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |