func strconv.Quote
11 uses
strconv (current package)
atoi.go#L31: return "strconv." + e.Func + ": " + "parsing " + Quote(e.Num) + ": " + e.Err.Error()
quote.go#L124: func Quote(s string) string {
encoding/json
decode.go#L150: return "json: cannot unmarshal object key " + strconv.Quote(e.Key) + " into unexported field " + e.Field.Name + " of type " + e.Type.String()
encode.go#L261: return "json: invalid UTF-8 in string: " + strconv.Quote(e.S)
scanner.go#L606: s := strconv.Quote(string(c))
net/url
url.go#L86: return "invalid URL escape " + strconv.Quote(string(e))
url.go#L92: return "invalid character " + strconv.Quote(string(e)) + " in host name"
os/exec
exec.go#L48: return "exec: " + strconv.Quote(e.Name) + ": " + e.Err.Error()
reflect
type.go#L2561: repr = append(repr, (" " + strconv.Quote(f.name.tag()))...)
regexp
regexp.go#L331: return strconv.Quote(s)
src.elv.sh/pkg/parse
pprint.go#L135: return strconv.Quote(text)
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)