MCPcopy Index your code
hub / github.com/expr-lang/expr / IsAlphaNumeric

Function IsAlphaNumeric

parser/utils/utils.go:28–30  ·  view source on GitHub ↗
(r rune)

Source from the content-addressed store, hash-verified

26}
27
28func IsAlphaNumeric(r rune) bool {
29 return IsAlphabetic(r) || unicode.IsDigit(r)
30}
31
32func IsAlphabetic(r rune) bool {
33 return r == '_' || r == '$' || unicode.IsLetter(r)

Callers 6

rootFunction · 0.92
scanNumberMethod · 0.92
identifierFunction · 0.92
notFunction · 0.92
pointerFunction · 0.92
IsValidIdentifierFunction · 0.85

Calls 1

IsAlphabeticFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…