Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IppClub/Dora-SSR
/ isHexNum
Function
isHexNum
Source/3rdParty/bx/src/string.cpp:57–63 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
55
}
56
57
bool isHexNum(char _ch)
58
{
59
return false
60
|| isInRange(toLower(_ch),
'a'
,
'f'
)
61
|| isNumeric(_ch)
62
;
63
}
64
65
bool isPrint(char _ch)
66
{
Callers
nothing calls this directly
Calls
3
isInRange
Function · 0.85
toLower
Function · 0.85
isNumeric
Function · 0.70
Tested by
no test coverage detected