Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/davidgiven/luje
/ isValidHexChar
Method
isValidHexChar
lib/java/net/URI.java:808–812 ·
view source on GitHub ↗
(char c)
Source
from the content-addressed store, hash-verified
806
}
807
808
private
boolean isValidHexChar(char c) {
809
810
return
(c >=
'0'
&& c <=
'9'
) || (c >=
'A'
&& c <=
'F'
)
811
|| (c >=
'a'
&& c <=
'f'
);
812
}
813
}
814
815
/*
Callers
1
isValidIP6Address
Method · 0.95
Calls
no outgoing calls
Tested by
no test coverage detected