MCPcopy 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
245static bool _is_number(CharType c) {
246 return (c >= '0' && c <= '9');
247}
248
249static bool _is_hex(CharType c) {
250 return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');

Callers 1

_advanceMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected