| 3609 | } |
| 3610 | |
| 3611 | bool 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 | |
| 3620 | int String::_count(const String &p_string, int p_from, int p_to, bool p_case_insensitive) const { |
| 3621 | if (p_string.is_empty()) { |
no test coverage detected