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

Function isAlpha

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

Source from the content-addressed store, hash-verified

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
398type parser struct {

Callers 2

numberOrIdentMethod · 0.85
isAlphaNumericFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected