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