func strings.ContainsRune
8 uses
strings (current package)
strings.go#L70: func ContainsRune(s string, r rune) bool {
strings.go#L949: if !ContainsRune(cutset, r) {
strings.go#L997: if !ContainsRune(cutset, r) {
encoding/json
encode.go#L912: case strings.ContainsRune("!#$%&()*+-./:;<=>?@[]^_{|}~ ", c):
math/big
ratconv.go#L18: return strings.ContainsRune("+-/0123456789.eE", ch)
ratconv.go#L31: if !strings.ContainsRune("efgEFGv", ch) {
mime
grammar.go#L14: return strings.ContainsRune(`()<>@,;:\"/[]?=`, r)
regexp/syntax
regexp.go#L256: if strings.ContainsRune(meta, r) || force {
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. |