func unicode.IsDigit
30 uses
unicode (current package)
digit.go#L8: func IsDigit(r rune) bool {
bytes
bytes.go#L739: if unicode.IsLetter(r) || unicode.IsDigit(r) {
contrib.go.opencensus.io/exporter/prometheus
sanitize.go#L34: if unicode.IsDigit(rune(s[0])) {
sanitize.go#L45: if unicode.IsLetter(r) || unicode.IsDigit(r) {
contrib.go.opencensus.io/exporter/stackdriver
sanitize.go#L34: if unicode.IsDigit(rune(s[0])) {
sanitize.go#L45: if unicode.IsLetter(r) || unicode.IsDigit(r) {
encoding/json
encode.go#L982: case !unicode.IsLetter(c) && !unicode.IsDigit(c):
github.com/ghodss/yaml
fields.go#L327: if !unicode.IsLetter(c) && !unicode.IsDigit(c) {
github.com/go-git/gcfg/scanner
scanner.go#L155: return '0' <= ch && ch <= '9' || ch >= 0x80 && unicode.IsDigit(ch)
github.com/google/licensecheck/internal/match
dict.go#L291: return unicode.IsLetter(r) || unicode.IsDigit(r) || r == '©'
dict.go#L296: return unicode.IsLetter(r) || unicode.IsDigit(r) || unicode.Is(unicode.Mn, r)
github.com/yuin/goldmark/extension
typographer.go#L235: if len(line) > 1 && (unicode.IsDigit(before) || unicode.IsLetter(before)) && (unicode.IsLetter(util.ToRune(line, 1))) {
typographer.go#L286: if len(line) > 1 && line[1] == '"' && unicode.IsDigit(before) {
go.opencensus.io/internal
sanitize.go#L34: if unicode.IsDigit(rune(s[0])) {
sanitize.go#L45: if unicode.IsLetter(r) || unicode.IsDigit(r) {
go/build
build.go#L1873: 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#L347: return isDecimal(ch) || ch >= utf8.RuneSelf && unicode.IsDigit(ch)
go/token
token.go#L335: if !unicode.IsLetter(c) && c != '_' && (i == 0 || !unicode.IsDigit(c)) {
golang.org/x/pkgsite/internal/godoc/dochtml/internal/render
render.go#L341: if !unicode.IsLetter(r) && !unicode.IsDigit(r) {
golang.org/x/pkgsite/internal/symbol
apigodoc.go#L182: endPkg := strings.IndexFunc(rest, func(r rune) bool { return !(unicode.IsLetter(r) || r == '.' || r == '/' || unicode.IsDigit(r)) })
google.golang.org/protobuf/internal/strs
strings.go#L75: if unicode.IsLetter(r) || unicode.IsDigit(r) {
gopkg.in/yaml.v2
sorter.go#L55: for j := i-1; j >= 0 && unicode.IsDigit(ar[j]); j-- {
sorter.go#L63: for ai = i; ai < len(ar) && unicode.IsDigit(ar[ai]); ai++ {
sorter.go#L66: for bi = i; bi < len(br) && unicode.IsDigit(br[bi]); bi++ {
reflect
type.go#L2353: if !(isLetter(c) || unicode.IsDigit(c)) {
regexp
regexp.go#L986: if !unicode.IsLetter(rune) && !unicode.IsDigit(rune) && rune != '_' {
strings
strings.go#L699: if unicode.IsLetter(r) || unicode.IsDigit(r) {
text/template
funcs.go#L131: case !unicode.IsLetter(r) && !unicode.IsDigit(r):
text/template/parse
lex.go#L662: return r == '_' || unicode.IsLetter(r) || unicode.IsDigit(r)
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin 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. |