func unicode.IsDigit

17 uses

	unicode (current package)
		digit.go#L8: func IsDigit(r rune) bool {

	bytes
		bytes.go#L820: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

	encoding/json
		encode.go#L937: 		case !unicode.IsLetter(c) && !unicode.IsDigit(c):

	go/build/constraint
		expr.go#L342: 		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {
		expr.go#L462: 		if !unicode.IsLetter(c) && !unicode.IsDigit(c) && c != '_' && c != '.' {

	go/doc
		reader.go#L994: 			ch >= utf8.RuneSelf && (unicode.IsLetter(ch) || unicode.IsDigit(ch)))

	go/doc/comment
		parse.go#L583: 	if !unicode.IsLetter(r) && !unicode.IsDigit(r) {

	go/scanner
		scanner.go#L314: 	return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)

	go/token
		token.go#L336: 		if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {

	go/types
		predicates.go#L576: 		if !(unicode.IsLetter(ch) || ch == '_' || i > 0 && unicode.IsDigit(ch)) {

	google.golang.org/protobuf/internal/strs
		strings.go#L75: 		if unicode.IsLetter(r) || unicode.IsDigit(r) {

	net/http
		pattern.go#L192: 		if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {

	reflect
		type.go#L2126: 		if !(isLetter(c) || unicode.IsDigit(c)) {

	regexp
		regexp.go#L987: 		if !unicode.IsLetter(rune) && !unicode.IsDigit(rune) && rune != '_' {

	strings
		strings.go#L852: 	if unicode.IsLetter(r) || unicode.IsDigit(r) {

	text/template
		funcs.go#L136: 		case !unicode.IsLetter(r) && !unicode.IsDigit(r):

	text/template/parse
		lex.go#L678: 	return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)