Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/IppClub/Dora-SSR
/ isAlphaNum
Function
isAlphaNum
Source/3rdParty/bx/src/string.cpp:49–55 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
47
}
48
49
bool isAlphaNum(char _ch)
50
{
51
return false
52
|| isAlpha(_ch)
53
|| isNumeric(_ch)
54
;
55
}
56
57
bool isHexNum(char _ch)
58
{
Callers
5
compileShader
Function · 0.85
isIdentifierValid
Function · 0.85
urlEncode
Function · 0.85
strSkipWord
Function · 0.85
findIdentifierMatch
Function · 0.85
Calls
2
isAlpha
Function · 0.85
isNumeric
Function · 0.70
Tested by
no test coverage detected