func net/textproto.TrimString
24 uses
net/textproto (current package)
textproto.go#L124: func TrimString(s string) string {
net/http
cookie.go#L67: parts := strings.Split(textproto.TrimString(line), ";")
cookie.go#L71: parts[0] = textproto.TrimString(parts[0])
cookie.go#L76: name = textproto.TrimString(name)
cookie.go#L90: parts[i] = textproto.TrimString(parts[i])
cookie.go#L285: line = textproto.TrimString(line)
cookie.go#L290: part = textproto.TrimString(part)
cookie.go#L295: name = textproto.TrimString(name)
fs.go#L361: s = textproto.TrimString(s)
fs.go#L413: im = textproto.TrimString(im)
fs.go#L463: buf = textproto.TrimString(buf)
fs.go#L898: ra = textproto.TrimString(ra)
fs.go#L906: start, end = textproto.TrimString(start), textproto.TrimString(end)
h2_bundle.go#L6048: key = CanonicalHeaderKey(textproto.TrimString(key))
h2_bundle.go#L7036: v = textproto.TrimString(v)
h2_bundle.go#L7045: if f = textproto.TrimString(f); f != "" {
header.go#L213: v = textproto.TrimString(v)
server.go#L1526: v = textproto.TrimString(v)
server.go#L1535: if f = textproto.TrimString(f); f != "" {
transfer.go#L679: first := textproto.TrimString(contentLens[0])
transfer.go#L681: if first != textproto.TrimString(ct) {
transfer.go#L713: cl = textproto.TrimString(contentLens[0])
transfer.go#L1044: cl = textproto.TrimString(cl)
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. |