| 3605 | } |
| 3606 | |
| 3607 | bool String::is_quoted() const { |
| 3608 | return is_enclosed_in("\"") || is_enclosed_in("'"); |
| 3609 | } |
| 3610 | |
| 3611 | bool String::is_lowercase() const { |
| 3612 | for (const char32_t *str = &operator[](0); *str; str++) { |
no outgoing calls
no test coverage detected