MCPcopy Create free account
hub / github.com/Redot-Engine/redot-engine / is_binary_digit

Function is_binary_digit

core/string/char_utils.h:107–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

105}
106
107constexpr bool is_binary_digit(char32_t p_char) {
108 return (p_char == '0' || p_char == '1');
109}
110
111constexpr bool is_ascii_alphabet_char(char32_t p_char) {
112 return (p_char >= 'a' && p_char <= 'z') || (p_char >= 'A' && p_char <= 'Z');

Callers 2

_get_tokenMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected