MCPcopy Index your code
hub / github.com/apache/answer / isDigit

Function isDigit

pkg/checker/question_link.go:91–93  ·  view source on GitHub ↗
(c byte)

Source from the content-addressed store, hash-verified

89}
90
91func isDigit(c byte) bool {
92 return c >= '0' && c <= '9'
93}
94
95func isLetter(c byte) bool {
96 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')

Callers 2

processURLFunction · 0.85
processIDFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected