Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GaijinEntertainment/daScript
/ isalphaE
Function
isalphaE
src/ast/ast_parse.cpp:40–42 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
38
}
39
40
__forceinline bool isalphaE ( int ch ) {
41
return (ch>=
'a'
&& ch<=
'z'
) || (ch>=
'A'
&& ch<=
'Z'
);
42
}
43
44
__forceinline bool isalnumE ( int ch ) {
45
return (ch>=
'0'
&& ch<=
'9'
) || (ch>=
'a'
&& ch<=
'z'
) || (ch>=
'A'
&& ch<=
'Z'
);
Callers
1
getAllRequireReq
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected