Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/GDRETools/gdsdecomp
/ _is_number
Function
_is_number
bytecode/gdscript_v1_tokenizer_compat.cpp:245–247 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
243
}
244
245
static bool _is_number(CharType c) {
246
return (c >=
'0'
&& c <=
'9'
);
247
}
248
249
static bool _is_hex(CharType c) {
250
return (c >=
'0'
&& c <=
'9'
) || (c >=
'a'
&& c <=
'f'
) || (c >=
'A'
&& c <=
'F'
);
Callers
1
_advance
Method · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected