func unicode.IsDigit
14 uses
unicode (current package)
digit.go#L8: func IsDigit(r rune) bool {
bytes
bytes.go#L743: if unicode.IsLetter(r) || unicode.IsDigit(r) {
encoding/json
encode.go#L983: case !unicode.IsLetter(c) && !unicode.IsDigit(c):
go/build/constraint
expr.go#L334: if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
expr.go#L443: if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
go/doc
comment.go#L228: if !unicode.IsLetter(r) && !unicode.IsDigit(r) {
go/scanner
scanner.go#L352: return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)
go/token
token.go#L344: if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {
google.golang.org/protobuf/internal/strs
strings.go#L75: if unicode.IsLetter(r) || unicode.IsDigit(r) {
reflect
type.go#L2416: if !(isLetter(c) || unicode.IsDigit(c)) {
regexp
regexp.go#L990: if !unicode.IsLetter(rune) && !unicode.IsDigit(rune) && rune != '_' {
strings
strings.go#L703: if unicode.IsLetter(r) || unicode.IsDigit(r) {
text/template
funcs.go#L134: case !unicode.IsLetter(r) && !unicode.IsDigit(r):
text/template/parse
lex.go#L673: return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)