func unicode.IsDigit
10 uses
unicode (current package)
digit.go#L8: func IsDigit(r rune) bool {
bytes
bytes.go#L739: if unicode.IsLetter(r) || unicode.IsDigit(r) {
encoding/json
encode.go#L982: case !unicode.IsLetter(c) && !unicode.IsDigit(c):
go/token
token.go#L335: if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {
reflect
type.go#L2353: if !(isLetter(c) || unicode.IsDigit(c)) {
regexp
regexp.go#L986: if !unicode.IsLetter(rune) && !unicode.IsDigit(rune) && rune != '_' {
src.elv.sh/cmd/examples/e3bc
main.go#L28: if unicode.IsDigit(r) {
src.elv.sh/pkg/eval
glob.go#L52: "digit": unicode.IsDigit,
glob.go#L55: "lower": unicode.IsDigit,
strings
strings.go#L699: if unicode.IsLetter(r) || unicode.IsDigit(r) {
The pages are generated with Golds v0.2.8-preview. (GOOS=darwin GOARCH=arm64)