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

Function is_underscore

core/string/char_utils.h:143–145  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

141}
142
143constexpr bool is_underscore(char32_t p_char) {
144 return (p_char == '_');
145}
146
147constexpr bool is_hyphen(char32_t p_char) {
148 return (p_char == '-') || (p_char == 0x2010) || (p_char == 0x2011);

Callers 9

numberMethod · 0.85
get_tokenMethod · 0.85
is_package_name_validMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected