MCPcopy Create free account
hub / github.com/KhronosGroup/SPIRV-Tools / isNumeric

Function isNumeric

utils/vscode/src/parser/parser.go:394–394  ·  view source on GitHub ↗
(r rune)

Source from the content-addressed store, hash-verified

392}
393
394func isNumeric(r rune) bool { return unicode.IsDigit(r) }
395func isAlpha(r rune) bool { return unicode.IsLetter(r) }
396func isAlphaNumeric(r rune) bool { return isAlpha(r) || isNumeric(r) }
397

Callers 2

numberOrIdentMethod · 0.85
isAlphaNumericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected