| 385 | bool isEmpty() const { return string_.empty(); } |
| 386 | |
| 387 | String substring(size_t position = 0, size_t count = std::u32string::npos) const { |
| 388 | return string_.substr(position, count); |
| 389 | } |
| 390 | |
| 391 | String trim() const { |
| 392 | size_t start = string_.find_first_not_of(U" \t\n\r"); |
no outgoing calls
no test coverage detected