func strings.ContainsAny
10 uses
strings (current package)
strings.go#L67: func ContainsAny(s, chars string) bool {
crypto/internal/fips140
cast.go#L38: if strings.ContainsAny(name, ",#=:") {
cast.go#L71: if strings.ContainsAny(name, ",#=:") {
mime
type_unix.go#L52: if strings.ContainsAny(extension, "?*[") {
mime/multipart
writer.go#L79: if strings.ContainsAny(b, `()<>@,;:\"/[]?= `) {
net/http
client.go#L1035: if strings.ContainsAny(sub, ":%") {
cookie.go#L512: if strings.ContainsAny(v, " ,") || quoted {
path/filepath
match.go#L357: return strings.ContainsAny(path, magicChars)
runtime/debug
mod.go#L99: return len(key) == 0 || strings.ContainsAny(key, "= \t\r\n\"`")
mod.go#L104: return strings.ContainsAny(value, " \t\r\n\"`")
 |
The pages are generated with Golds v0.8.4. (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. |