Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
91
func
isDigit(c byte) bool {
92
return
c >=
'0'
&& c <=
'9'
93
}
94
95
func
isLetter(c byte) bool {
96
return
(c >=
'a'
&& c <=
'z'
) || (c >=
'A'
&& c <=
'Z'
)
Callers
2
processURL
Function · 0.85
processID
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected