func strings.Join
15 uses
strings (current package)
strings.go#L434: func Join(elems []string, sep string) string {
crypto/tls
common.go#L1139: wildcardName := strings.Join(labels, ".")
crypto/x509
verify.go#L120: valid = strings.Join(c.DNSNames, ", ")
encoding/json
decode.go#L258: err.Field = strings.Join(d.errorContext.FieldStack, ".")
github.com/gotd/td/tgerr
error.go#L112: e.Type = strings.Join(nonDigit, "_")
go.opentelemetry.io/otel/trace
tracestate.go#L160: return strings.Join(members, listDelimiter)
go.uber.org/zap
logger.go#L161: l.name = strings.Join([]string{l.name, s}, ".")
net/http
client.go#L794: ireqhdr.Set("Cookie", strings.Join(ss, "; "))
fs.go#L59: fi, err := stat(strings.Join(parts[:i+1], string(sep)))
h2_bundle.go#L6041: rp.header.Set("Cookie", strings.Join(cookies, "; "))
h2_bundle.go#L8245: return strings.Join(keys, ","), nil
transfer.go#L323: if _, err := io.WriteString(w, "Trailer: "+strings.Join(keys, ",")+"\r\n"); err != nil {
nhooyr.io/websocket
dial.go#L200: req.Header.Set("Sec-WebSocket-Protocol", strings.Join(opts.Subprotocols, ","))
path/filepath
path_unix.go#L49: return Clean(strings.Join(elem[i:], string(Separator)))
vendor/golang.org/x/net/idna
idna10.0.0.go#L560: return strings.Join(l.slice, ".")
|
The pages are generated with Golds v0.6.7. (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 @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |