func strings.ContainsAny
7 uses
	strings (current package)
		strings.go#L65: func ContainsAny(s, chars string) bool {
	mime
		type_unix.go#L52: 		if strings.ContainsAny(extension, "?*[") {
	mime/multipart
		writer.go#L78: 	if strings.ContainsAny(b, `()<>@,;:\"/[]?= `) {
	net/http
		cookie.go#L408: 	if strings.ContainsAny(v, " ,") {
	path/filepath
		match.go#L368: 	return strings.ContainsAny(path, magicChars)
	runtime/debug
		mod.go#L96: 	return len(key) == 0 || strings.ContainsAny(key, "= \t\r\n\"`")
		mod.go#L101: 	return strings.ContainsAny(value, " \t\r\n\"`")
|  | 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. |