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

Method is_lowercase

core/string/ustring.cpp:3611–3618  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3609}
3610
3611bool String::is_lowercase() const {
3612 for (const char32_t *str = &operator[](0); *str; str++) {
3613 if (is_unicode_upper_case(*str)) {
3614 return false;
3615 }
3616 }
3617 return true;
3618}
3619
3620int String::_count(const String &p_string, int p_from, int p_to, bool p_case_insensitive) const {
3621 if (p_string.is_empty()) {

Callers 2

set_queryMethod · 0.80
test_string.hFile · 0.80

Calls 1

is_unicode_upper_caseFunction · 0.85

Tested by

no test coverage detected