Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/apache/tomcat
/ isHexDigit
Method
isHexDigit
java/org/apache/tomcat/util/buf/UDecoder.java:362–364 ·
view source on GitHub ↗
(int c)
Source
from the content-addressed store, hash-verified
360
361
362
private
static
boolean isHexDigit(
int
c) {
363
return
((c >=
'0'
&& c <=
'9'
) || (c >=
'a'
&& c <=
'f'
) || (c >=
'A'
&& c <=
'F'
));
364
}
365
366
367
private
static
int
x2c(byte b1, byte b2) {
Callers
2
convert
Method · 0.95
URLDecode
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected